diff --git a/ceres/BUCK b/ceres/BUCK new file mode 100644 index 00000000..a6fac72d --- /dev/null +++ b/ceres/BUCK @@ -0,0 +1,31 @@ +rust_library ( + name = "ceres", + srcs = glob(["src/**/*.rs"]), + crate_root = "src/lib.rs", + deps = [ + "//jupiter/callisto:callisto", + "//common:common", + "//mercury:mercury", + "//jupiter:jupiter", + "//third-party:anyhow", + "//third-party:tokio", + "//third-party:tokio-stream", + "//third-party:axum", + "//third-party:tracing", + "//third-party:serde", + "//third-party:serde_json", + "//third-party:clap", + "//third-party:chrono", + "//third-party:futures", + "//third-party:bytes", + "//third-party:async-trait", + "//third-party:rand", + "//third-party:sea-orm", + "//third-party:ring", + "//third-party:hex", + "//third-party:sysinfo", + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/ceres/src/lfs/handler.rs b/ceres/src/lfs/handler.rs index 3056f157..10c5879f 100644 --- a/ceres/src/lfs/handler.rs +++ b/ceres/src/lfs/handler.rs @@ -361,8 +361,9 @@ pub async fn lfs_upload_object( /// when server enable split, if OID is a complete object, then splice the object and return it. pub async fn lfs_download_object( context: Context, - oid: &String, + oid: String, ) -> Result>, GitLFSError> { + let oid = &oid; let config = context.config.lfs; let stg = context.services.lfs_db_storage.clone(); let lfs_storage = context.services.lfs_storage.clone(); diff --git a/common/BUCK b/common/BUCK new file mode 100644 index 00000000..d0557331 --- /dev/null +++ b/common/BUCK @@ -0,0 +1,30 @@ +rust_library ( + name = "common", + srcs = [ + "src/lib.rs", + "src/config.rs", + "src/enums.rs", + "src/errors.rs", + "src/model.rs", + "src/utils.rs", + "config.toml", + ], + crate_root = "src/lib.rs", + deps = [ + "//third-party:axum", + "//third-party:anyhow", + "//third-party:sea-orm", + "//third-party:thiserror", + "//third-party:clap", + "//third-party:idgenerator", + "//third-party:serde", + "//third-party:config", + "//third-party:envsubst", + "//third-party:rand", + "//third-party:serde_json", + "//third-party:regex", + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/common/config.toml b/common/config.toml new file mode 120000 index 00000000..bcc6b1f3 --- /dev/null +++ b/common/config.toml @@ -0,0 +1 @@ +../mega/config.toml \ No newline at end of file diff --git a/common/src/config.rs b/common/src/config.rs index 18f3c91a..c308b668 100644 --- a/common/src/config.rs +++ b/common/src/config.rs @@ -66,7 +66,7 @@ impl Default for Config { std::fs::create_dir_all(&base_dir).unwrap(); // use mega/config.toml because mega use sqlite as default db - let default_config = include_str!("../../mega/config.toml"); + let default_config = include_str!("../config.toml"); let default_config = default_config .lines() .map(|line| { diff --git a/jupiter/BUCK b/jupiter/BUCK new file mode 100644 index 00000000..9748fa04 --- /dev/null +++ b/jupiter/BUCK @@ -0,0 +1,25 @@ +rust_library ( + name = "jupiter", + srcs = glob(["src/**/*.rs", "sqlite_20241204_init.sql"]), # soft link must be file, not directory, for buck2 reason + crate_root = "src/lib.rs", + deps = [ + "//jupiter/callisto:callisto", + "//common:common", + "//mercury:mercury", + "//saturn:saturn", + "//third-party:sea-orm", + "//third-party:tracing", + "//third-party:bytes", + "//third-party:chrono", + "//third-party:async-trait", + "//third-party:futures", + "//third-party:serde_json", + "//third-party:idgenerator", + "//third-party:serde", + "//third-party:tokio", + "//third-party:uuid", + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/jupiter/callisto/BUCK b/jupiter/callisto/BUCK new file mode 100644 index 00000000..eb075770 --- /dev/null +++ b/jupiter/callisto/BUCK @@ -0,0 +1,12 @@ +rust_library ( + name = "callisto", + srcs = glob(["src/**/*.rs"]), + crate_root = "src/lib.rs", + deps = [ + "//third-party:serde", + "//third-party:sea-orm", + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/jupiter/sqlite_20241204_init.sql b/jupiter/sqlite_20241204_init.sql new file mode 120000 index 00000000..985206b9 --- /dev/null +++ b/jupiter/sqlite_20241204_init.sql @@ -0,0 +1 @@ +../sql/sqlite/sqlite_20241204_init.sql \ No newline at end of file diff --git a/jupiter/src/storage/init.rs b/jupiter/src/storage/init.rs index 6e90ab15..ec3652fa 100644 --- a/jupiter/src/storage/init.rs +++ b/jupiter/src/storage/init.rs @@ -68,7 +68,7 @@ async fn setup_sql(conn: &DatabaseConnection) -> Result<(), TransactionError", + "CARGO_PKG_DESCRIPTION": "Mega-mono", + "CARGO_PKG_NAME": "mono", + "CARGO_PKG_VERSION": "0.1.0", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "1", + "CARGO_PKG_VERSION_PATCH": "0", + }, + visibility = [ + "PUBLIC", + ], +) \ No newline at end of file diff --git a/mono/Cargo.toml b/mono/Cargo.toml index 70ab83d2..8dba461d 100644 --- a/mono/Cargo.toml +++ b/mono/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Quanyi Ma "] keywords = ["git", "monorepo", "decentralized"] license = "MIT OR Apache-2.0" readme = "README.md" -build = "src/build.rs" [[bin]] name = "mono" @@ -50,7 +49,7 @@ regex = { workspace = true } ed25519-dalek = { workspace = true, features = ["pkcs8"] } lazy_static = { workspace = true } ctrlc = { workspace = true } -shadow-rs = { workspace = true } +# shadow-rs = { workspace = true } oauth2 = { workspace = true } base64 = { workspace = true } async-session = "3.0.0" @@ -66,7 +65,7 @@ mimalloc = "0.1.43" [dev-dependencies] [build-dependencies] -shadow-rs = { workspace = true } +# shadow-rs = { workspace = true } # [target.'cfg(not(target_env = "msvc"))'.dependencies] # tikv-jemallocator = "0.6" diff --git a/mono/src/api/lfs/lfs_router.rs b/mono/src/api/lfs/lfs_router.rs index 0a252747..bb8801aa 100644 --- a/mono/src/api/lfs/lfs_router.rs +++ b/mono/src/api/lfs/lfs_router.rs @@ -242,7 +242,7 @@ pub async fn lfs_download_object( state: State, Path(oid): Path, ) -> Result { - let result = handler::lfs_download_object(state.context.clone(), &oid).await; + let result = handler::lfs_download_object(state.context.clone(), oid.clone()).await; match result { Ok(byte_stream) => Ok(Response::builder() .header("Content-Type", LFS_CONTENT_TYPE) diff --git a/mono/src/build.rs b/mono/src/build.rs deleted file mode 100644 index 577494be..00000000 --- a/mono/src/build.rs +++ /dev/null @@ -1,12 +0,0 @@ -//! Using shadow_rs to build-time information stored in Mega. -//! -//! -//! - -fn main() -> shadow_rs::SdResult<()> { - #[cfg(target_os = "linux")] - println!("cargo:rustc-link-arg=-Wl,-rpath,$ORIGIN"); - #[cfg(target_os = "macos")] - println!("cargo:rustc-link-arg=-Wl,-rpath,@executable_path"); - shadow_rs::new() -} diff --git a/mono/src/main.rs b/mono/src/main.rs index d8cfbb83..d10afc4c 100644 --- a/mono/src/main.rs +++ b/mono/src/main.rs @@ -3,9 +3,6 @@ //! //! And this is the main entry point for the application. -use shadow_rs::shadow; -shadow!(build); - mod cli; mod commands; @@ -28,13 +25,5 @@ fn main() { // If there was an error, print it if let Err(e) = result { e.print(); - eprintln!("Version:{}", build::VERSION); - eprintln!("Version:{}", build::CLAP_LONG_VERSION); - eprintln!("Version:{}", build::PKG_VERSION); - eprintln!("OS:{}", build::BUILD_OS); - eprintln!("Rust Version:{}", build::RUST_VERSION); - eprintln!("Rust Channel:{}", build::RUST_CHANNEL); - eprintln!("Cargo Version:{}", build::CARGO_VERSION); - eprintln!("Build Time:{}", build::BUILD_TIME); } } diff --git a/saturn/BUCK b/saturn/BUCK new file mode 100644 index 00000000..d05e2fe5 --- /dev/null +++ b/saturn/BUCK @@ -0,0 +1,17 @@ +rust_library ( + name = "saturn", + srcs = glob(["src/**/*.rs", "mega_policies.cedar", "mega.cedarschema"]), + crate_root = "src/lib.rs", + deps = [ + "//third-party:serde", + "//third-party:serde_json", + "//third-party:tracing", + "//third-party:tracing-subscriber", + "//third-party:thiserror", + "//third-party:cedar-policy", + "//third-party:itertools", + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/taurus/BUCK b/taurus/BUCK new file mode 100644 index 00000000..e598a775 --- /dev/null +++ b/taurus/BUCK @@ -0,0 +1,23 @@ +rust_library ( + name = "taurus", + srcs = glob(["src/**/*.rs"]), + crate_root = "src/lib.rs", + deps = [ + "//jupiter/callisto:callisto", + "//common:common", + "//jupiter:jupiter", + "//third-party:axum", + "//third-party:async-trait", + "//third-party:tokio", + "//third-party:tracing", + "//third-party:thiserror", + "//third-party:serde", + "//third-party:serde_json", + "//third-party:chrono", + "//third-party:crossbeam-channel", + + ], + visibility = [ + 'PUBLIC', + ], +) diff --git a/third-party/BUCK b/third-party/BUCK index f51f08f8..89a160c8 100644 --- a/third-party/BUCK +++ b/third-party/BUCK @@ -552,6 +552,166 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "aead-0.5.2", + srcs = [ + "vendor/aead-0.5.2/src/dev.rs", + "vendor/aead-0.5.2/src/lib.rs", + "vendor/aead-0.5.2/src/stream.rs", + ], + crate = "aead", + crate_root = "vendor/aead-0.5.2/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "getrandom", + "rand_core", + ], + visibility = [], + deps = [ + ":crypto-common-0.1.6", + ":generic-array-0.14.7", + ], +) + +cargo.rust_library( + name = "aes-0.8.4", + srcs = [ + "vendor/aes-0.8.4/src/armv8.rs", + "vendor/aes-0.8.4/src/armv8/encdec.rs", + "vendor/aes-0.8.4/src/armv8/expand.rs", + "vendor/aes-0.8.4/src/armv8/hazmat.rs", + "vendor/aes-0.8.4/src/armv8/intrinsics.rs", + "vendor/aes-0.8.4/src/armv8/test_expand.rs", + "vendor/aes-0.8.4/src/autodetect.rs", + "vendor/aes-0.8.4/src/hazmat.rs", + "vendor/aes-0.8.4/src/lib.rs", + "vendor/aes-0.8.4/src/ni.rs", + "vendor/aes-0.8.4/src/ni/aes128.rs", + "vendor/aes-0.8.4/src/ni/aes192.rs", + "vendor/aes-0.8.4/src/ni/aes256.rs", + "vendor/aes-0.8.4/src/ni/hazmat.rs", + "vendor/aes-0.8.4/src/ni/test_expand.rs", + "vendor/aes-0.8.4/src/ni/utils.rs", + "vendor/aes-0.8.4/src/soft.rs", + "vendor/aes-0.8.4/src/soft/fixslice32.rs", + "vendor/aes-0.8.4/src/soft/fixslice64.rs", + ], + crate = "aes", + crate_root = "vendor/aes-0.8.4/src/lib.rs", + edition = "2021", + platform = { + "linux-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":cipher-0.4.4", + ], +) + +cargo.rust_library( + name = "aes-gcm-0.10.3", + srcs = [ + "vendor/aes-gcm-0.10.3/README.md", + "vendor/aes-gcm-0.10.3/src/lib.rs", + ], + crate = "aes_gcm", + crate_root = "vendor/aes-gcm-0.10.3/src/lib.rs", + edition = "2021", + features = [ + "aes", + "alloc", + "default", + "getrandom", + "rand_core", + ], + visibility = [], + deps = [ + ":aead-0.5.2", + ":aes-0.8.4", + ":cipher-0.4.4", + ":ctr-0.9.2", + ":ghash-0.5.1", + ":subtle-2.6.1", + ], +) + +cargo.rust_library( + name = "ahash-0.7.8", + srcs = [ + "vendor/ahash-0.7.8/src/aes_hash.rs", + "vendor/ahash-0.7.8/src/convert.rs", + "vendor/ahash-0.7.8/src/fallback_hash.rs", + "vendor/ahash-0.7.8/src/hash_map.rs", + "vendor/ahash-0.7.8/src/hash_quality_test.rs", + "vendor/ahash-0.7.8/src/hash_set.rs", + "vendor/ahash-0.7.8/src/lib.rs", + "vendor/ahash-0.7.8/src/operations.rs", + "vendor/ahash-0.7.8/src/random_state.rs", + "vendor/ahash-0.7.8/src/specialize.rs", + ], + crate = "ahash", + crate_root = "vendor/ahash-0.7.8/src/lib.rs", + edition = "2018", + platform = { + "linux-arm64": dict( + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ], + ), + "linux-x86_64": dict( + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ], + ), + "macos-arm64": dict( + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ], + ), + "macos-x86_64": dict( + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ], + ), + "windows-gnu": dict( + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ], + ), + "windows-msvc": dict( + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ], + ), + }, + visibility = [], +) + cargo.rust_library( name = "ahash-0.8.11", srcs = [ @@ -650,6 +810,25 @@ cargo.rust_library( deps = [":memchr-2.7.4"], ) +cargo.rust_library( + name = "aliasable-0.1.3", + srcs = [ + "vendor/aliasable-0.1.3/src/boxed.rs", + "vendor/aliasable-0.1.3/src/lib.rs", + "vendor/aliasable-0.1.3/src/mut_ref.rs", + "vendor/aliasable-0.1.3/src/string.rs", + "vendor/aliasable-0.1.3/src/vec.rs", + ], + crate = "aliasable", + crate_root = "vendor/aliasable-0.1.3/src/lib.rs", + edition = "2018", + features = [ + "alloc", + "default", + ], + visibility = [], +) + cargo.rust_library( name = "alloc-no-stdlib-2.0.4", srcs = [ @@ -869,6 +1048,158 @@ cargo.rust_library( "default", "std", ], + rustc_flags = ["@$(location :anyhow-1.0.93-build-script-run[rustc_flags])"], + visibility = [], +) + +cargo.rust_binary( + name = "anyhow-1.0.93-build-script-build", + srcs = [ + "vendor/anyhow-1.0.93/build.rs", + "vendor/anyhow-1.0.93/build/probe.rs", + "vendor/anyhow-1.0.93/src/backtrace.rs", + "vendor/anyhow-1.0.93/src/chain.rs", + "vendor/anyhow-1.0.93/src/context.rs", + "vendor/anyhow-1.0.93/src/ensure.rs", + "vendor/anyhow-1.0.93/src/error.rs", + "vendor/anyhow-1.0.93/src/fmt.rs", + "vendor/anyhow-1.0.93/src/kind.rs", + "vendor/anyhow-1.0.93/src/lib.rs", + "vendor/anyhow-1.0.93/src/macros.rs", + "vendor/anyhow-1.0.93/src/ptr.rs", + "vendor/anyhow-1.0.93/src/wrapper.rs", + "vendor/anyhow-1.0.93/tests/common/mod.rs", + "vendor/anyhow-1.0.93/tests/compiletest.rs", + "vendor/anyhow-1.0.93/tests/drop/mod.rs", + "vendor/anyhow-1.0.93/tests/test_autotrait.rs", + "vendor/anyhow-1.0.93/tests/test_backtrace.rs", + "vendor/anyhow-1.0.93/tests/test_boxed.rs", + "vendor/anyhow-1.0.93/tests/test_chain.rs", + "vendor/anyhow-1.0.93/tests/test_context.rs", + "vendor/anyhow-1.0.93/tests/test_convert.rs", + "vendor/anyhow-1.0.93/tests/test_downcast.rs", + "vendor/anyhow-1.0.93/tests/test_ensure.rs", + "vendor/anyhow-1.0.93/tests/test_ffi.rs", + "vendor/anyhow-1.0.93/tests/test_fmt.rs", + "vendor/anyhow-1.0.93/tests/test_macros.rs", + "vendor/anyhow-1.0.93/tests/test_repr.rs", + "vendor/anyhow-1.0.93/tests/test_source.rs", + "vendor/anyhow-1.0.93/tests/ui/chained-comparison.rs", + "vendor/anyhow-1.0.93/tests/ui/empty-ensure.rs", + "vendor/anyhow-1.0.93/tests/ui/ensure-nonbool.rs", + "vendor/anyhow-1.0.93/tests/ui/must-use.rs", + "vendor/anyhow-1.0.93/tests/ui/no-impl.rs", + "vendor/anyhow-1.0.93/tests/ui/temporary-value.rs", + "vendor/anyhow-1.0.93/tests/ui/wrong-interpolation.rs", + ], + crate = "build_script_build", + crate_root = "vendor/anyhow-1.0.93/build.rs", + edition = "2018", + features = [ + "default", + "std", + ], + visibility = [], +) + +buildscript_run( + name = "anyhow-1.0.93-build-script-run", + package_name = "anyhow", + buildscript_rule = ":anyhow-1.0.93-build-script-build", + features = [ + "default", + "std", + ], + version = "1.0.93", +) + +cargo.rust_library( + name = "arc-swap-1.7.1", + srcs = [ + "vendor/arc-swap-1.7.1/src/access.rs", + "vendor/arc-swap-1.7.1/src/as_raw.rs", + "vendor/arc-swap-1.7.1/src/cache.rs", + "vendor/arc-swap-1.7.1/src/compile_fail_tests.rs", + "vendor/arc-swap-1.7.1/src/debt/fast.rs", + "vendor/arc-swap-1.7.1/src/debt/helping.rs", + "vendor/arc-swap-1.7.1/src/debt/list.rs", + "vendor/arc-swap-1.7.1/src/debt/mod.rs", + "vendor/arc-swap-1.7.1/src/docs/internal.rs", + "vendor/arc-swap-1.7.1/src/docs/limitations.rs", + "vendor/arc-swap-1.7.1/src/docs/mod.rs", + "vendor/arc-swap-1.7.1/src/docs/patterns.rs", + "vendor/arc-swap-1.7.1/src/docs/performance.rs", + "vendor/arc-swap-1.7.1/src/lib.rs", + "vendor/arc-swap-1.7.1/src/ref_cnt.rs", + "vendor/arc-swap-1.7.1/src/serde.rs", + "vendor/arc-swap-1.7.1/src/strategy/hybrid.rs", + "vendor/arc-swap-1.7.1/src/strategy/mod.rs", + "vendor/arc-swap-1.7.1/src/strategy/rw_lock.rs", + "vendor/arc-swap-1.7.1/src/strategy/test_strategies.rs", + "vendor/arc-swap-1.7.1/src/weak.rs", + ], + crate = "arc_swap", + crate_root = "vendor/arc-swap-1.7.1/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "argon2-0.5.3", + srcs = [ + "vendor/argon2-0.5.3/README.md", + "vendor/argon2-0.5.3/src/algorithm.rs", + "vendor/argon2-0.5.3/src/blake2b_long.rs", + "vendor/argon2-0.5.3/src/block.rs", + "vendor/argon2-0.5.3/src/error.rs", + "vendor/argon2-0.5.3/src/lib.rs", + "vendor/argon2-0.5.3/src/params.rs", + "vendor/argon2-0.5.3/src/version.rs", + ], + crate = "argon2", + crate_root = "vendor/argon2-0.5.3/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "password-hash", + ], + platform = { + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":base64ct-1.6.0", + ":blake2-0.10.6", + ":password-hash-0.5.0", + ], +) + +cargo.rust_library( + name = "arraydeque-0.5.1", + srcs = [ + "vendor/arraydeque-0.5.1/src/behavior.rs", + "vendor/arraydeque-0.5.1/src/error.rs", + "vendor/arraydeque-0.5.1/src/lib.rs", + "vendor/arraydeque-0.5.1/src/range.rs", + ], + crate = "arraydeque", + crate_root = "vendor/arraydeque-0.5.1/src/lib.rs", + edition = "2021", + features = [ + "default", + "std", + ], visibility = [], ) @@ -881,6 +1212,27 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "arrayvec-0.5.2", + srcs = [ + "vendor/arrayvec-0.5.2/src/array.rs", + "vendor/arrayvec-0.5.2/src/array_string.rs", + "vendor/arrayvec-0.5.2/src/char.rs", + "vendor/arrayvec-0.5.2/src/errors.rs", + "vendor/arrayvec-0.5.2/src/lib.rs", + "vendor/arrayvec-0.5.2/src/maybe_uninit.rs", + ], + crate = "arrayvec", + crate_root = "vendor/arrayvec-0.5.2/src/lib.rs", + edition = "2018", + features = [ + "array-sizes-33-128", + "default", + "std", + ], + visibility = [], +) + cargo.rust_library( name = "arrayvec-0.7.6", srcs = [ @@ -908,6 +1260,22 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "ascii-canvas-4.0.0", + srcs = [ + "vendor/ascii-canvas-4.0.0/src/lib.rs", + "vendor/ascii-canvas-4.0.0/src/row.rs", + "vendor/ascii-canvas-4.0.0/src/style.rs", + "vendor/ascii-canvas-4.0.0/src/test.rs", + "vendor/ascii-canvas-4.0.0/src/test_util.rs", + ], + crate = "ascii_canvas", + crate_root = "vendor/ascii-canvas-4.0.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":term-1.0.0"], +) + alias( name = "assert_cmd", actual = ":assert_cmd-2.0.16", @@ -1003,6 +1371,112 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "async-compression-0.4.12", + srcs = [ + "vendor/async-compression-0.4.12/src/brotli.rs", + "vendor/async-compression-0.4.12/src/codec/brotli/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/brotli/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/brotli/mod.rs", + "vendor/async-compression-0.4.12/src/codec/bzip2/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/bzip2/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/bzip2/mod.rs", + "vendor/async-compression-0.4.12/src/codec/deflate/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/deflate/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/deflate/mod.rs", + "vendor/async-compression-0.4.12/src/codec/deflate64/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/deflate64/mod.rs", + "vendor/async-compression-0.4.12/src/codec/flate/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/flate/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/flate/mod.rs", + "vendor/async-compression-0.4.12/src/codec/gzip/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/gzip/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/gzip/header.rs", + "vendor/async-compression-0.4.12/src/codec/gzip/mod.rs", + "vendor/async-compression-0.4.12/src/codec/lzma/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/lzma/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/lzma/mod.rs", + "vendor/async-compression-0.4.12/src/codec/mod.rs", + "vendor/async-compression-0.4.12/src/codec/xz/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/xz/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/xz/mod.rs", + "vendor/async-compression-0.4.12/src/codec/xz2/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/xz2/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/xz2/mod.rs", + "vendor/async-compression-0.4.12/src/codec/zlib/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/zlib/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/zlib/mod.rs", + "vendor/async-compression-0.4.12/src/codec/zstd/decoder.rs", + "vendor/async-compression-0.4.12/src/codec/zstd/encoder.rs", + "vendor/async-compression-0.4.12/src/codec/zstd/mod.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/generic/decoder.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/generic/encoder.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/generic/mod.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/macros/decoder.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/macros/encoder.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/macros/mod.rs", + "vendor/async-compression-0.4.12/src/futures/bufread/mod.rs", + "vendor/async-compression-0.4.12/src/futures/mod.rs", + "vendor/async-compression-0.4.12/src/futures/write/buf_write.rs", + "vendor/async-compression-0.4.12/src/futures/write/buf_writer.rs", + "vendor/async-compression-0.4.12/src/futures/write/generic/decoder.rs", + "vendor/async-compression-0.4.12/src/futures/write/generic/encoder.rs", + "vendor/async-compression-0.4.12/src/futures/write/generic/mod.rs", + "vendor/async-compression-0.4.12/src/futures/write/macros/decoder.rs", + "vendor/async-compression-0.4.12/src/futures/write/macros/encoder.rs", + "vendor/async-compression-0.4.12/src/futures/write/macros/mod.rs", + "vendor/async-compression-0.4.12/src/futures/write/mod.rs", + "vendor/async-compression-0.4.12/src/lib.rs", + "vendor/async-compression-0.4.12/src/macros.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/generic/decoder.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/generic/encoder.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/generic/mod.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/macros/decoder.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/macros/encoder.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/macros/mod.rs", + "vendor/async-compression-0.4.12/src/tokio/bufread/mod.rs", + "vendor/async-compression-0.4.12/src/tokio/mod.rs", + "vendor/async-compression-0.4.12/src/tokio/write/buf_write.rs", + "vendor/async-compression-0.4.12/src/tokio/write/buf_writer.rs", + "vendor/async-compression-0.4.12/src/tokio/write/generic/decoder.rs", + "vendor/async-compression-0.4.12/src/tokio/write/generic/encoder.rs", + "vendor/async-compression-0.4.12/src/tokio/write/generic/mod.rs", + "vendor/async-compression-0.4.12/src/tokio/write/macros/decoder.rs", + "vendor/async-compression-0.4.12/src/tokio/write/macros/encoder.rs", + "vendor/async-compression-0.4.12/src/tokio/write/macros/mod.rs", + "vendor/async-compression-0.4.12/src/tokio/write/mod.rs", + "vendor/async-compression-0.4.12/src/unshared.rs", + "vendor/async-compression-0.4.12/src/util.rs", + "vendor/async-compression-0.4.12/src/zstd.rs", + ], + crate = "async_compression", + crate_root = "vendor/async-compression-0.4.12/src/lib.rs", + edition = "2018", + features = [ + "brotli", + "flate2", + "gzip", + "libzstd", + "tokio", + "zlib", + "zstd", + "zstd-safe", + ], + named_deps = { + "libzstd": ":zstd-0.13.2", + }, + visibility = [], + deps = [ + ":brotli-6.0.0", + ":flate2-1.0.35", + ":futures-core-0.3.31", + ":memchr-2.7.4", + ":pin-project-lite-0.2.14", + ":tokio-1.43.0", + ":zstd-safe-7.2.1", + ], +) + cargo.rust_library( name = "async-executor-1.13.0", srcs = [ @@ -1261,6 +1735,42 @@ cargo.rust_library( ], ) +alias( + name = "async-session", + actual = ":async-session-3.0.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "async-session-3.0.0", + srcs = [ + "vendor/async-session-3.0.0/src/cookie_store.rs", + "vendor/async-session-3.0.0/src/lib.rs", + "vendor/async-session-3.0.0/src/memory_store.rs", + "vendor/async-session-3.0.0/src/session.rs", + "vendor/async-session-3.0.0/src/session_store.rs", + ], + crate = "async_session", + crate_root = "vendor/async-session-3.0.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":anyhow-1.0.93", + ":async-lock-2.8.0", + ":async-trait-0.1.86", + ":base64-0.13.1", + ":bincode-1.3.3", + ":blake3-0.3.8", + ":chrono-0.4.39", + ":hmac-0.11.0", + ":log-0.4.22", + ":rand-0.8.5", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":sha2-0.9.9", + ], +) + cargo.rust_library( name = "async-signal-0.2.10", srcs = [ @@ -1665,19 +2175,59 @@ cargo.rust_library( ], ) +alias( + name = "async-stream", + actual = ":async-stream-0.3.6", + visibility = ["PUBLIC"], +) + cargo.rust_library( - name = "async-task-4.7.1", + name = "async-stream-0.3.6", srcs = [ - "vendor/async-task-4.7.1/src/header.rs", - "vendor/async-task-4.7.1/src/lib.rs", - "vendor/async-task-4.7.1/src/raw.rs", - "vendor/async-task-4.7.1/src/runnable.rs", - "vendor/async-task-4.7.1/src/state.rs", - "vendor/async-task-4.7.1/src/task.rs", - "vendor/async-task-4.7.1/src/utils.rs", + "vendor/async-stream-0.3.6/src/async_stream.rs", + "vendor/async-stream-0.3.6/src/lib.rs", + "vendor/async-stream-0.3.6/src/next.rs", + "vendor/async-stream-0.3.6/src/yielder.rs", ], - crate = "async_task", - crate_root = "vendor/async-task-4.7.1/src/lib.rs", + crate = "async_stream", + crate_root = "vendor/async-stream-0.3.6/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":async-stream-impl-0.3.6", + ":futures-core-0.3.31", + ":pin-project-lite-0.2.14", + ], +) + +cargo.rust_library( + name = "async-stream-impl-0.3.6", + srcs = ["vendor/async-stream-impl-0.3.6/src/lib.rs"], + crate = "async_stream_impl", + crate_root = "vendor/async-stream-impl-0.3.6/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "async-task-4.7.1", + srcs = [ + "vendor/async-task-4.7.1/src/header.rs", + "vendor/async-task-4.7.1/src/lib.rs", + "vendor/async-task-4.7.1/src/raw.rs", + "vendor/async-task-4.7.1/src/runnable.rs", + "vendor/async-task-4.7.1/src/state.rs", + "vendor/async-task-4.7.1/src/task.rs", + "vendor/async-task-4.7.1/src/utils.rs", + ], + crate = "async_task", + crate_root = "vendor/async-task-4.7.1/src/lib.rs", edition = "2021", features = [ "default", @@ -1716,6 +2266,20 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "atoi-2.0.0", + srcs = ["vendor/atoi-2.0.0/src/lib.rs"], + crate = "atoi", + crate_root = "vendor/atoi-2.0.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "std", + ], + visibility = [], + deps = [":num-traits-0.2.19"], +) + cargo.rust_library( name = "atomic-waker-1.1.2", srcs = ["vendor/atomic-waker-1.1.2/src/lib.rs"], @@ -1725,6 +2289,21 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "autocfg-1.3.0", + srcs = [ + "vendor/autocfg-1.3.0/src/error.rs", + "vendor/autocfg-1.3.0/src/lib.rs", + "vendor/autocfg-1.3.0/src/rustc.rs", + "vendor/autocfg-1.3.0/src/tests.rs", + "vendor/autocfg-1.3.0/src/version.rs", + ], + crate = "autocfg", + crate_root = "vendor/autocfg-1.3.0/src/lib.rs", + edition = "2015", + visibility = [], +) + cargo.rust_library( name = "aws-lc-rs-1.12.2", srcs = [ @@ -1936,6 +2515,27 @@ cargo.rust_library( srcs = [ "vendor/axum-0.8.1/src/body/mod.rs", "vendor/axum-0.8.1/src/boxed.rs", + "vendor/axum-0.8.1/src/docs/debugging_handler_type_errors.md", + "vendor/axum-0.8.1/src/docs/error_handling.md", + "vendor/axum-0.8.1/src/docs/extract.md", + "vendor/axum-0.8.1/src/docs/handlers_intro.md", + "vendor/axum-0.8.1/src/docs/method_routing/fallback.md", + "vendor/axum-0.8.1/src/docs/method_routing/layer.md", + "vendor/axum-0.8.1/src/docs/method_routing/merge.md", + "vendor/axum-0.8.1/src/docs/method_routing/route_layer.md", + "vendor/axum-0.8.1/src/docs/middleware.md", + "vendor/axum-0.8.1/src/docs/response.md", + "vendor/axum-0.8.1/src/docs/routing/fallback.md", + "vendor/axum-0.8.1/src/docs/routing/into_make_service_with_connect_info.md", + "vendor/axum-0.8.1/src/docs/routing/layer.md", + "vendor/axum-0.8.1/src/docs/routing/merge.md", + "vendor/axum-0.8.1/src/docs/routing/method_not_allowed_fallback.md", + "vendor/axum-0.8.1/src/docs/routing/nest.md", + "vendor/axum-0.8.1/src/docs/routing/route.md", + "vendor/axum-0.8.1/src/docs/routing/route_layer.md", + "vendor/axum-0.8.1/src/docs/routing/route_service.md", + "vendor/axum-0.8.1/src/docs/routing/with_state.md", + "vendor/axum-0.8.1/src/docs/routing/without_v07_checks.md", "vendor/axum-0.8.1/src/error_handling/mod.rs", "vendor/axum-0.8.1/src/extension.rs", "vendor/axum-0.8.1/src/extract/connect_info.rs", @@ -2084,6 +2684,76 @@ cargo.rust_library( ], ) +alias( + name = "axum-extra", + actual = ":axum-extra-0.10.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "axum-extra-0.10.0", + srcs = [ + "vendor/axum-extra-0.10.0/src/body/async_read_body.rs", + "vendor/axum-extra-0.10.0/src/body/mod.rs", + "vendor/axum-extra-0.10.0/src/either.rs", + "vendor/axum-extra-0.10.0/src/extract/cached.rs", + "vendor/axum-extra-0.10.0/src/extract/cookie/mod.rs", + "vendor/axum-extra-0.10.0/src/extract/cookie/private.rs", + "vendor/axum-extra-0.10.0/src/extract/cookie/signed.rs", + "vendor/axum-extra-0.10.0/src/extract/form.rs", + "vendor/axum-extra-0.10.0/src/extract/host.rs", + "vendor/axum-extra-0.10.0/src/extract/json_deserializer.rs", + "vendor/axum-extra-0.10.0/src/extract/mod.rs", + "vendor/axum-extra-0.10.0/src/extract/multipart.rs", + "vendor/axum-extra-0.10.0/src/extract/optional_path.rs", + "vendor/axum-extra-0.10.0/src/extract/query.rs", + "vendor/axum-extra-0.10.0/src/extract/rejection.rs", + "vendor/axum-extra-0.10.0/src/extract/scheme.rs", + "vendor/axum-extra-0.10.0/src/extract/with_rejection.rs", + "vendor/axum-extra-0.10.0/src/handler/mod.rs", + "vendor/axum-extra-0.10.0/src/handler/or.rs", + "vendor/axum-extra-0.10.0/src/json_lines.rs", + "vendor/axum-extra-0.10.0/src/lib.rs", + "vendor/axum-extra-0.10.0/src/middleware.rs", + "vendor/axum-extra-0.10.0/src/protobuf.rs", + "vendor/axum-extra-0.10.0/src/response/attachment.rs", + "vendor/axum-extra-0.10.0/src/response/erased_json.rs", + "vendor/axum-extra-0.10.0/src/response/error_response.rs", + "vendor/axum-extra-0.10.0/src/response/file_stream.rs", + "vendor/axum-extra-0.10.0/src/response/mod.rs", + "vendor/axum-extra-0.10.0/src/response/multiple.rs", + "vendor/axum-extra-0.10.0/src/routing/mod.rs", + "vendor/axum-extra-0.10.0/src/routing/resource.rs", + "vendor/axum-extra-0.10.0/src/routing/typed.rs", + "vendor/axum-extra-0.10.0/src/typed_header.rs", + ], + crate = "axum_extra", + crate_root = "vendor/axum-extra-0.10.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "tracing", + "typed-header", + ], + visibility = [], + deps = [ + ":axum-0.8.1", + ":axum-core-0.5.0", + ":bytes-1.10.0", + ":futures-util-0.3.31", + ":headers-0.4.0", + ":http-1.1.0", + ":http-body-1.0.1", + ":http-body-util-0.1.2", + ":mime-0.3.17", + ":pin-project-lite-0.2.14", + ":serde-1.0.217", + ":tower-0.5.2", + ":tower-layer-0.3.3", + ":tower-service-0.3.3", + ], +) + cargo.rust_library( name = "axum-macros-0.5.0", srcs = [ @@ -2110,6 +2780,141 @@ cargo.rust_library( ], ) +alias( + name = "axum-server", + actual = ":axum-server-0.7.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "axum-server-0.7.1", + srcs = [ + "vendor/axum-server-0.7.1/src/accept.rs", + "vendor/axum-server-0.7.1/src/handle.rs", + "vendor/axum-server-0.7.1/src/lib.rs", + "vendor/axum-server-0.7.1/src/notify_once.rs", + "vendor/axum-server-0.7.1/src/server.rs", + "vendor/axum-server-0.7.1/src/service.rs", + "vendor/axum-server-0.7.1/src/tls_openssl/future.rs", + "vendor/axum-server-0.7.1/src/tls_openssl/mod.rs", + "vendor/axum-server-0.7.1/src/tls_rustls/future.rs", + "vendor/axum-server-0.7.1/src/tls_rustls/mod.rs", + ], + crate = "axum_server", + crate_root = "vendor/axum-server-0.7.1/src/lib.rs", + edition = "2021", + features = [ + "arc-swap", + "default", + "rustls", + "rustls-pemfile", + "rustls-pki-types", + "tls-rustls", + "tls-rustls-no-provider", + "tokio-rustls", + ], + visibility = [], + deps = [ + ":arc-swap-1.7.1", + ":bytes-1.10.0", + ":futures-util-0.3.31", + ":http-1.1.0", + ":http-body-1.0.1", + ":http-body-util-0.1.2", + ":hyper-1.4.1", + ":hyper-util-0.1.10", + ":pin-project-lite-0.2.14", + ":rustls-0.23.22", + ":rustls-pemfile-2.1.3", + ":rustls-pki-types-1.11.0", + ":tokio-1.43.0", + ":tokio-rustls-0.26.0", + ":tower-0.4.13", + ":tower-service-0.3.3", + ], +) + +cargo.rust_library( + name = "base16ct-0.2.0", + srcs = [ + "vendor/base16ct-0.2.0/src/display.rs", + "vendor/base16ct-0.2.0/src/error.rs", + "vendor/base16ct-0.2.0/src/lib.rs", + "vendor/base16ct-0.2.0/src/lower.rs", + "vendor/base16ct-0.2.0/src/mixed.rs", + "vendor/base16ct-0.2.0/src/upper.rs", + ], + crate = "base16ct", + crate_root = "vendor/base16ct-0.2.0/src/lib.rs", + edition = "2021", + features = ["alloc"], + visibility = [], +) + +cargo.rust_library( + name = "base64-0.13.1", + srcs = [ + "vendor/base64-0.13.1/src/chunked_encoder.rs", + "vendor/base64-0.13.1/src/decode.rs", + "vendor/base64-0.13.1/src/display.rs", + "vendor/base64-0.13.1/src/encode.rs", + "vendor/base64-0.13.1/src/lib.rs", + "vendor/base64-0.13.1/src/read/decoder.rs", + "vendor/base64-0.13.1/src/read/decoder_tests.rs", + "vendor/base64-0.13.1/src/read/mod.rs", + "vendor/base64-0.13.1/src/tables.rs", + "vendor/base64-0.13.1/src/tests.rs", + "vendor/base64-0.13.1/src/write/encoder.rs", + "vendor/base64-0.13.1/src/write/encoder_string_writer.rs", + "vendor/base64-0.13.1/src/write/encoder_tests.rs", + "vendor/base64-0.13.1/src/write/mod.rs", + ], + crate = "base64", + crate_root = "vendor/base64-0.13.1/src/lib.rs", + edition = "2018", + features = [ + "default", + "std", + ], + visibility = [], +) + +cargo.rust_library( + name = "base64-0.21.7", + srcs = [ + "vendor/base64-0.21.7/src/alphabet.rs", + "vendor/base64-0.21.7/src/chunked_encoder.rs", + "vendor/base64-0.21.7/src/decode.rs", + "vendor/base64-0.21.7/src/display.rs", + "vendor/base64-0.21.7/src/encode.rs", + "vendor/base64-0.21.7/src/engine/general_purpose/decode.rs", + "vendor/base64-0.21.7/src/engine/general_purpose/decode_suffix.rs", + "vendor/base64-0.21.7/src/engine/general_purpose/mod.rs", + "vendor/base64-0.21.7/src/engine/mod.rs", + "vendor/base64-0.21.7/src/engine/naive.rs", + "vendor/base64-0.21.7/src/engine/tests.rs", + "vendor/base64-0.21.7/src/lib.rs", + "vendor/base64-0.21.7/src/prelude.rs", + "vendor/base64-0.21.7/src/read/decoder.rs", + "vendor/base64-0.21.7/src/read/decoder_tests.rs", + "vendor/base64-0.21.7/src/read/mod.rs", + "vendor/base64-0.21.7/src/tests.rs", + "vendor/base64-0.21.7/src/write/encoder.rs", + "vendor/base64-0.21.7/src/write/encoder_string_writer.rs", + "vendor/base64-0.21.7/src/write/encoder_tests.rs", + "vendor/base64-0.21.7/src/write/mod.rs", + ], + crate = "base64", + crate_root = "vendor/base64-0.21.7/src/lib.rs", + edition = "2018", + features = [ + "alloc", + "default", + "std", + ], + visibility = [], +) + alias( name = "base64", actual = ":base64-0.22.1", @@ -2152,6 +2957,34 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "base64ct-1.6.0", + srcs = [ + "vendor/base64ct-1.6.0/README.md", + "vendor/base64ct-1.6.0/src/alphabet.rs", + "vendor/base64ct-1.6.0/src/alphabet/bcrypt.rs", + "vendor/base64ct-1.6.0/src/alphabet/crypt.rs", + "vendor/base64ct-1.6.0/src/alphabet/shacrypt.rs", + "vendor/base64ct-1.6.0/src/alphabet/standard.rs", + "vendor/base64ct-1.6.0/src/alphabet/url.rs", + "vendor/base64ct-1.6.0/src/decoder.rs", + "vendor/base64ct-1.6.0/src/encoder.rs", + "vendor/base64ct-1.6.0/src/encoding.rs", + "vendor/base64ct-1.6.0/src/errors.rs", + "vendor/base64ct-1.6.0/src/lib.rs", + "vendor/base64ct-1.6.0/src/line_ending.rs", + "vendor/base64ct-1.6.0/src/test_vectors.rs", + ], + crate = "base64ct", + crate_root = "vendor/base64ct-1.6.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "std", + ], + visibility = [], +) + cargo.rust_library( name = "bcrypt-0.15.1", srcs = [ @@ -2178,6 +3011,42 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "bcrypt-pbkdf-0.10.0", + srcs = [ + "vendor/bcrypt-pbkdf-0.10.0/README.md", + "vendor/bcrypt-pbkdf-0.10.0/src/errors.rs", + "vendor/bcrypt-pbkdf-0.10.0/src/lib.rs", + ], + crate = "bcrypt_pbkdf", + crate_root = "vendor/bcrypt-pbkdf-0.10.0/src/lib.rs", + edition = "2021", + features = ["alloc"], + visibility = [], + deps = [ + ":blowfish-0.9.1", + ":pbkdf2-0.12.2", + ":sha2-0.10.8", + ], +) + +cargo.rust_library( + name = "beef-0.5.2", + srcs = [ + "vendor/beef-0.5.2/src/generic.rs", + "vendor/beef-0.5.2/src/lean.rs", + "vendor/beef-0.5.2/src/lib.rs", + "vendor/beef-0.5.2/src/serde.rs", + "vendor/beef-0.5.2/src/traits.rs", + "vendor/beef-0.5.2/src/wide.rs", + ], + crate = "beef", + crate_root = "vendor/beef-0.5.2/src/lib.rs", + edition = "2018", + features = ["default"], + visibility = [], +) + cargo.rust_library( name = "better_default-1.0.5", srcs = [ @@ -2201,6 +3070,158 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "bigdecimal-0.4.6", + srcs = [ + "vendor/bigdecimal-0.4.6/src/arithmetic/addition.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/addition.tests.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/cbrt.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/inverse.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/mod.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/sqrt.rs", + "vendor/bigdecimal-0.4.6/src/context.rs", + "vendor/bigdecimal-0.4.6/src/impl_cmp.rs", + "vendor/bigdecimal-0.4.6/src/impl_convert.rs", + "vendor/bigdecimal-0.4.6/src/impl_fmt.rs", + "vendor/bigdecimal-0.4.6/src/impl_num.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_add.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_div.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_mul.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_rem.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_sub.rs", + "vendor/bigdecimal-0.4.6/src/impl_serde.rs", + "vendor/bigdecimal-0.4.6/src/impl_trait_from_str.rs", + "vendor/bigdecimal-0.4.6/src/lib.rs", + "vendor/bigdecimal-0.4.6/src/lib.tests.double.rs", + "vendor/bigdecimal-0.4.6/src/lib.tests.property-tests.rs", + "vendor/bigdecimal-0.4.6/src/lib.tests.with_scale_round.rs", + "vendor/bigdecimal-0.4.6/src/macros.rs", + "vendor/bigdecimal-0.4.6/src/parsing.rs", + "vendor/bigdecimal-0.4.6/src/parsing.tests.parse_from_f32.rs", + "vendor/bigdecimal-0.4.6/src/parsing.tests.parse_from_f64.rs", + "vendor/bigdecimal-0.4.6/src/rounding.rs", + "vendor/bigdecimal-0.4.6/src/rounding.tests.rs", + "vendor/bigdecimal-0.4.6/src/with_std.rs", + "vendor/bigdecimal-0.4.6/src/without_std.rs", + ], + crate = "bigdecimal", + crate_root = "vendor/bigdecimal-0.4.6/src/lib.rs", + edition = "2015", + env = { + "OUT_DIR": "$(location :bigdecimal-0.4.6-build-script-run[out_dir])", + }, + features = [ + "default", + "serde", + "std", + ], + visibility = [], + deps = [ + ":libm-0.2.8", + ":num-bigint-0.4.6", + ":num-integer-0.1.46", + ":num-traits-0.2.19", + ":serde-1.0.217", + ], +) + +cargo.rust_binary( + name = "bigdecimal-0.4.6-build-script-build", + srcs = [ + "vendor/bigdecimal-0.4.6/benches/arithmetic.rs", + "vendor/bigdecimal-0.4.6/benches/common.rs", + "vendor/bigdecimal-0.4.6/build.rs", + "vendor/bigdecimal-0.4.6/examples/floating-precision.rs", + "vendor/bigdecimal-0.4.6/examples/formatting-examples.rs", + "vendor/bigdecimal-0.4.6/examples/repeated_squares.rs", + "vendor/bigdecimal-0.4.6/examples/simple-math.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/addition.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/addition.tests.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/cbrt.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/inverse.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/mod.rs", + "vendor/bigdecimal-0.4.6/src/arithmetic/sqrt.rs", + "vendor/bigdecimal-0.4.6/src/context.rs", + "vendor/bigdecimal-0.4.6/src/impl_cmp.rs", + "vendor/bigdecimal-0.4.6/src/impl_convert.rs", + "vendor/bigdecimal-0.4.6/src/impl_fmt.rs", + "vendor/bigdecimal-0.4.6/src/impl_num.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_add.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_div.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_mul.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_rem.rs", + "vendor/bigdecimal-0.4.6/src/impl_ops_sub.rs", + "vendor/bigdecimal-0.4.6/src/impl_serde.rs", + "vendor/bigdecimal-0.4.6/src/impl_trait_from_str.rs", + "vendor/bigdecimal-0.4.6/src/lib.rs", + "vendor/bigdecimal-0.4.6/src/lib.tests.double.rs", + "vendor/bigdecimal-0.4.6/src/lib.tests.property-tests.rs", + "vendor/bigdecimal-0.4.6/src/lib.tests.with_scale_round.rs", + "vendor/bigdecimal-0.4.6/src/macros.rs", + "vendor/bigdecimal-0.4.6/src/parsing.rs", + "vendor/bigdecimal-0.4.6/src/parsing.tests.parse_from_f32.rs", + "vendor/bigdecimal-0.4.6/src/parsing.tests.parse_from_f64.rs", + "vendor/bigdecimal-0.4.6/src/rounding.rs", + "vendor/bigdecimal-0.4.6/src/rounding.tests.rs", + "vendor/bigdecimal-0.4.6/src/with_std.rs", + "vendor/bigdecimal-0.4.6/src/without_std.rs", + ], + crate = "build_script_build", + crate_root = "vendor/bigdecimal-0.4.6/build.rs", + edition = "2015", + features = [ + "default", + "serde", + "std", + ], + visibility = [], + deps = [":autocfg-1.3.0"], +) + +buildscript_run( + name = "bigdecimal-0.4.6-build-script-run", + package_name = "bigdecimal", + buildscript_rule = ":bigdecimal-0.4.6-build-script-build", + features = [ + "default", + "serde", + "std", + ], + version = "0.4.6", +) + +alias( + name = "bincode", + actual = ":bincode-1.3.3", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "bincode-1.3.3", + srcs = [ + "vendor/bincode-1.3.3/src/byteorder.rs", + "vendor/bincode-1.3.3/src/config/endian.rs", + "vendor/bincode-1.3.3/src/config/int.rs", + "vendor/bincode-1.3.3/src/config/legacy.rs", + "vendor/bincode-1.3.3/src/config/limit.rs", + "vendor/bincode-1.3.3/src/config/mod.rs", + "vendor/bincode-1.3.3/src/config/trailing.rs", + "vendor/bincode-1.3.3/src/de/mod.rs", + "vendor/bincode-1.3.3/src/de/read.rs", + "vendor/bincode-1.3.3/src/error.rs", + "vendor/bincode-1.3.3/src/internal.rs", + "vendor/bincode-1.3.3/src/lib.rs", + "vendor/bincode-1.3.3/src/ser/mod.rs", + ], + crate = "bincode", + crate_root = "vendor/bincode-1.3.3/src/lib.rs", + edition = "2015", + visibility = [], + deps = [":serde-1.0.217"], +) + cargo.rust_library( name = "bindgen-0.69.5", srcs = [ @@ -2263,6 +3284,9 @@ cargo.rust_library( crate = "bindgen", crate_root = "vendor/bindgen-0.69.5/lib.rs", edition = "2018", + env = { + "OUT_DIR": "$(location :bindgen-0.69.5-build-script-run[out_dir])", + }, features = [ "default", "logging", @@ -2290,43 +3314,148 @@ cargo.rust_library( ], ) -cargo.rust_library( - name = "bitcoin-io-0.1.2", - srcs = [ - "vendor/bitcoin-io-0.1.2/src/error.rs", - "vendor/bitcoin-io-0.1.2/src/lib.rs", - "vendor/bitcoin-io-0.1.2/src/macros.rs", - ], - crate = "bitcoin_io", - crate_root = "vendor/bitcoin-io-0.1.2/src/lib.rs", - edition = "2021", - features = [ - "alloc", - "std", - ], - visibility = [], -) - -cargo.rust_library( - name = "bitcoin_hashes-0.14.0", +cargo.rust_binary( + name = "bindgen-0.69.5-build-script-build", srcs = [ - "vendor/bitcoin_hashes-0.14.0/src/cmp.rs", - "vendor/bitcoin_hashes-0.14.0/src/hash160.rs", - "vendor/bitcoin_hashes-0.14.0/src/hmac.rs", - "vendor/bitcoin_hashes-0.14.0/src/impls.rs", - "vendor/bitcoin_hashes-0.14.0/src/internal_macros.rs", - "vendor/bitcoin_hashes-0.14.0/src/lib.rs", - "vendor/bitcoin_hashes-0.14.0/src/ripemd160.rs", - "vendor/bitcoin_hashes-0.14.0/src/serde_macros.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha1.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha256.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha256d.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha256t.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha384.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha512.rs", - "vendor/bitcoin_hashes-0.14.0/src/sha512_256.rs", - "vendor/bitcoin_hashes-0.14.0/src/siphash24.rs", - "vendor/bitcoin_hashes-0.14.0/src/util.rs", + "vendor/bindgen-0.69.5/build.rs", + "vendor/bindgen-0.69.5/callbacks.rs", + "vendor/bindgen-0.69.5/clang.rs", + "vendor/bindgen-0.69.5/codegen/bitfield_unit.rs", + "vendor/bindgen-0.69.5/codegen/bitfield_unit_tests.rs", + "vendor/bindgen-0.69.5/codegen/dyngen.rs", + "vendor/bindgen-0.69.5/codegen/error.rs", + "vendor/bindgen-0.69.5/codegen/helpers.rs", + "vendor/bindgen-0.69.5/codegen/impl_debug.rs", + "vendor/bindgen-0.69.5/codegen/impl_partialeq.rs", + "vendor/bindgen-0.69.5/codegen/mod.rs", + "vendor/bindgen-0.69.5/codegen/postprocessing/merge_extern_blocks.rs", + "vendor/bindgen-0.69.5/codegen/postprocessing/mod.rs", + "vendor/bindgen-0.69.5/codegen/postprocessing/sort_semantically.rs", + "vendor/bindgen-0.69.5/codegen/serialize.rs", + "vendor/bindgen-0.69.5/codegen/struct_layout.rs", + "vendor/bindgen-0.69.5/deps.rs", + "vendor/bindgen-0.69.5/diagnostics.rs", + "vendor/bindgen-0.69.5/extra_assertions.rs", + "vendor/bindgen-0.69.5/features.rs", + "vendor/bindgen-0.69.5/ir/analysis/derive.rs", + "vendor/bindgen-0.69.5/ir/analysis/has_destructor.rs", + "vendor/bindgen-0.69.5/ir/analysis/has_float.rs", + "vendor/bindgen-0.69.5/ir/analysis/has_type_param_in_array.rs", + "vendor/bindgen-0.69.5/ir/analysis/has_vtable.rs", + "vendor/bindgen-0.69.5/ir/analysis/mod.rs", + "vendor/bindgen-0.69.5/ir/analysis/sizedness.rs", + "vendor/bindgen-0.69.5/ir/analysis/template_params.rs", + "vendor/bindgen-0.69.5/ir/annotations.rs", + "vendor/bindgen-0.69.5/ir/comment.rs", + "vendor/bindgen-0.69.5/ir/comp.rs", + "vendor/bindgen-0.69.5/ir/context.rs", + "vendor/bindgen-0.69.5/ir/derive.rs", + "vendor/bindgen-0.69.5/ir/dot.rs", + "vendor/bindgen-0.69.5/ir/enum_ty.rs", + "vendor/bindgen-0.69.5/ir/function.rs", + "vendor/bindgen-0.69.5/ir/int.rs", + "vendor/bindgen-0.69.5/ir/item.rs", + "vendor/bindgen-0.69.5/ir/item_kind.rs", + "vendor/bindgen-0.69.5/ir/layout.rs", + "vendor/bindgen-0.69.5/ir/mod.rs", + "vendor/bindgen-0.69.5/ir/module.rs", + "vendor/bindgen-0.69.5/ir/objc.rs", + "vendor/bindgen-0.69.5/ir/template.rs", + "vendor/bindgen-0.69.5/ir/traversal.rs", + "vendor/bindgen-0.69.5/ir/ty.rs", + "vendor/bindgen-0.69.5/ir/var.rs", + "vendor/bindgen-0.69.5/lib.rs", + "vendor/bindgen-0.69.5/log_stubs.rs", + "vendor/bindgen-0.69.5/options/as_args.rs", + "vendor/bindgen-0.69.5/options/helpers.rs", + "vendor/bindgen-0.69.5/options/mod.rs", + "vendor/bindgen-0.69.5/parse.rs", + "vendor/bindgen-0.69.5/regex_set.rs", + "vendor/bindgen-0.69.5/time.rs", + ], + crate = "build_script_build", + crate_root = "vendor/bindgen-0.69.5/build.rs", + edition = "2018", + features = [ + "default", + "logging", + "prettyplease", + "runtime", + "which-rustfmt", + ], + visibility = [], +) + +buildscript_run( + name = "bindgen-0.69.5-build-script-run", + package_name = "bindgen", + buildscript_rule = ":bindgen-0.69.5-build-script-build", + features = [ + "default", + "logging", + "prettyplease", + "runtime", + "which-rustfmt", + ], + version = "0.69.5", +) + +cargo.rust_library( + name = "bit-set-0.8.0", + srcs = ["vendor/bit-set-0.8.0/src/lib.rs"], + crate = "bit_set", + crate_root = "vendor/bit-set-0.8.0/src/lib.rs", + edition = "2015", + visibility = [], + deps = [":bit-vec-0.8.0"], +) + +cargo.rust_library( + name = "bit-vec-0.8.0", + srcs = ["vendor/bit-vec-0.8.0/src/lib.rs"], + crate = "bit_vec", + crate_root = "vendor/bit-vec-0.8.0/src/lib.rs", + edition = "2015", + visibility = [], +) + +cargo.rust_library( + name = "bitcoin-io-0.1.2", + srcs = [ + "vendor/bitcoin-io-0.1.2/src/error.rs", + "vendor/bitcoin-io-0.1.2/src/lib.rs", + "vendor/bitcoin-io-0.1.2/src/macros.rs", + ], + crate = "bitcoin_io", + crate_root = "vendor/bitcoin-io-0.1.2/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "std", + ], + visibility = [], +) + +cargo.rust_library( + name = "bitcoin_hashes-0.14.0", + srcs = [ + "vendor/bitcoin_hashes-0.14.0/src/cmp.rs", + "vendor/bitcoin_hashes-0.14.0/src/hash160.rs", + "vendor/bitcoin_hashes-0.14.0/src/hmac.rs", + "vendor/bitcoin_hashes-0.14.0/src/impls.rs", + "vendor/bitcoin_hashes-0.14.0/src/internal_macros.rs", + "vendor/bitcoin_hashes-0.14.0/src/lib.rs", + "vendor/bitcoin_hashes-0.14.0/src/ripemd160.rs", + "vendor/bitcoin_hashes-0.14.0/src/serde_macros.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha1.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha256.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha256d.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha256t.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha384.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha512.rs", + "vendor/bitcoin_hashes-0.14.0/src/sha512_256.rs", + "vendor/bitcoin_hashes-0.14.0/src/siphash24.rs", + "vendor/bitcoin_hashes-0.14.0/src/util.rs", ], crate = "bitcoin_hashes", crate_root = "vendor/bitcoin_hashes-0.14.0/src/lib.rs", @@ -2407,6 +3536,272 @@ cargo.rust_library( deps = [":serde-1.0.217"], ) +cargo.rust_library( + name = "bitvec-1.0.1", + srcs = [ + "vendor/bitvec-1.0.1/README.md", + "vendor/bitvec-1.0.1/doc/README.md", + "vendor/bitvec-1.0.1/doc/access.md", + "vendor/bitvec-1.0.1/doc/access/BitAccess.md", + "vendor/bitvec-1.0.1/doc/access/BitSafe.md", + "vendor/bitvec-1.0.1/doc/access/impl_BitSafe.md", + "vendor/bitvec-1.0.1/doc/array.md", + "vendor/bitvec-1.0.1/doc/array/BitArray.md", + "vendor/bitvec-1.0.1/doc/array/IntoIter.md", + "vendor/bitvec-1.0.1/doc/array/TryFromBitSliceError.md", + "vendor/bitvec-1.0.1/doc/array/api.md", + "vendor/bitvec-1.0.1/doc/array/iter.md", + "vendor/bitvec-1.0.1/doc/boxed.md", + "vendor/bitvec-1.0.1/doc/boxed/BitBox.md", + "vendor/bitvec-1.0.1/doc/boxed/iter.md", + "vendor/bitvec-1.0.1/doc/domain.md", + "vendor/bitvec-1.0.1/doc/domain/BitDomain.md", + "vendor/bitvec-1.0.1/doc/domain/Domain.md", + "vendor/bitvec-1.0.1/doc/domain/PartialElement.md", + "vendor/bitvec-1.0.1/doc/field.md", + "vendor/bitvec-1.0.1/doc/field/BitField.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Lsb0.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Lsb0_load_be.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Lsb0_load_le.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Lsb0_store_be.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Lsb0_store_le.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Msb0.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Msb0_load_be.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Msb0_load_le.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Msb0_store_be.md", + "vendor/bitvec-1.0.1/doc/field/BitField_Msb0_store_le.md", + "vendor/bitvec-1.0.1/doc/field/BitField_load.md", + "vendor/bitvec-1.0.1/doc/field/BitField_load_be.md", + "vendor/bitvec-1.0.1/doc/field/BitField_load_le.md", + "vendor/bitvec-1.0.1/doc/field/BitField_store.md", + "vendor/bitvec-1.0.1/doc/field/BitField_store_be.md", + "vendor/bitvec-1.0.1/doc/field/BitField_store_le.md", + "vendor/bitvec-1.0.1/doc/field/get.md", + "vendor/bitvec-1.0.1/doc/field/impl_BitArray.md", + "vendor/bitvec-1.0.1/doc/field/io.md", + "vendor/bitvec-1.0.1/doc/field/io/Read_BitSlice.md", + "vendor/bitvec-1.0.1/doc/field/io/Read_BitVec.md", + "vendor/bitvec-1.0.1/doc/field/io/Write_BitSlice.md", + "vendor/bitvec-1.0.1/doc/field/io/Write_BitVec.md", + "vendor/bitvec-1.0.1/doc/field/resize.md", + "vendor/bitvec-1.0.1/doc/field/set.md", + "vendor/bitvec-1.0.1/doc/field/sign.md", + "vendor/bitvec-1.0.1/doc/index.md", + "vendor/bitvec-1.0.1/doc/index/BitEnd.md", + "vendor/bitvec-1.0.1/doc/index/BitIdx.md", + "vendor/bitvec-1.0.1/doc/index/BitIdxError.md", + "vendor/bitvec-1.0.1/doc/index/BitMask.md", + "vendor/bitvec-1.0.1/doc/index/BitPos.md", + "vendor/bitvec-1.0.1/doc/index/BitSel.md", + "vendor/bitvec-1.0.1/doc/macros.md", + "vendor/bitvec-1.0.1/doc/macros/BitArr_type.md", + "vendor/bitvec-1.0.1/doc/macros/bitarr_value.md", + "vendor/bitvec-1.0.1/doc/macros/bitbox.md", + "vendor/bitvec-1.0.1/doc/macros/bits.md", + "vendor/bitvec-1.0.1/doc/macros/bitvec.md", + "vendor/bitvec-1.0.1/doc/macros/encode_bits.md", + "vendor/bitvec-1.0.1/doc/macros/internal.md", + "vendor/bitvec-1.0.1/doc/macros/make_elem.md", + "vendor/bitvec-1.0.1/doc/mem.md", + "vendor/bitvec-1.0.1/doc/mem/BitElement.md", + "vendor/bitvec-1.0.1/doc/mem/BitRegister.md", + "vendor/bitvec-1.0.1/doc/mem/elts.md", + "vendor/bitvec-1.0.1/doc/order.md", + "vendor/bitvec-1.0.1/doc/order/BitOrder.md", + "vendor/bitvec-1.0.1/doc/order/LocalBits.md", + "vendor/bitvec-1.0.1/doc/order/Lsb0.md", + "vendor/bitvec-1.0.1/doc/order/Msb0.md", + "vendor/bitvec-1.0.1/doc/order/verify.md", + "vendor/bitvec-1.0.1/doc/order/verify_for_type.md", + "vendor/bitvec-1.0.1/doc/prelude.md", + "vendor/bitvec-1.0.1/doc/ptr.md", + "vendor/bitvec-1.0.1/doc/ptr/BitPtr.md", + "vendor/bitvec-1.0.1/doc/ptr/BitPtrRange.md", + "vendor/bitvec-1.0.1/doc/ptr/BitRef.md", + "vendor/bitvec-1.0.1/doc/ptr/BitSpan.md", + "vendor/bitvec-1.0.1/doc/ptr/addr.md", + "vendor/bitvec-1.0.1/doc/ptr/bitslice_from_raw_parts.md", + "vendor/bitvec-1.0.1/doc/ptr/bitslice_from_raw_parts_mut.md", + "vendor/bitvec-1.0.1/doc/ptr/copy.md", + "vendor/bitvec-1.0.1/doc/ptr/copy_nonoverlapping.md", + "vendor/bitvec-1.0.1/doc/ptr/drop_in_place.md", + "vendor/bitvec-1.0.1/doc/ptr/eq.md", + "vendor/bitvec-1.0.1/doc/ptr/hash.md", + "vendor/bitvec-1.0.1/doc/ptr/null.md", + "vendor/bitvec-1.0.1/doc/ptr/null_mut.md", + "vendor/bitvec-1.0.1/doc/ptr/proxy.md", + "vendor/bitvec-1.0.1/doc/ptr/range.md", + "vendor/bitvec-1.0.1/doc/ptr/read.md", + "vendor/bitvec-1.0.1/doc/ptr/read_unaligned.md", + "vendor/bitvec-1.0.1/doc/ptr/read_volatile.md", + "vendor/bitvec-1.0.1/doc/ptr/replace.md", + "vendor/bitvec-1.0.1/doc/ptr/single.md", + "vendor/bitvec-1.0.1/doc/ptr/slice_from_raw_parts.md", + "vendor/bitvec-1.0.1/doc/ptr/slice_from_raw_parts_mut.md", + "vendor/bitvec-1.0.1/doc/ptr/span.md", + "vendor/bitvec-1.0.1/doc/ptr/swap.md", + "vendor/bitvec-1.0.1/doc/ptr/swap_nonoverlapping.md", + "vendor/bitvec-1.0.1/doc/ptr/write.md", + "vendor/bitvec-1.0.1/doc/ptr/write_bits.md", + "vendor/bitvec-1.0.1/doc/ptr/write_bytes.md", + "vendor/bitvec-1.0.1/doc/ptr/write_unaligned.md", + "vendor/bitvec-1.0.1/doc/ptr/write_volatile.md", + "vendor/bitvec-1.0.1/doc/serdes.md", + "vendor/bitvec-1.0.1/doc/serdes/array.md", + "vendor/bitvec-1.0.1/doc/serdes/slice.md", + "vendor/bitvec-1.0.1/doc/serdes/utils.md", + "vendor/bitvec-1.0.1/doc/slice.md", + "vendor/bitvec-1.0.1/doc/slice/BitSlice.md", + "vendor/bitvec-1.0.1/doc/slice/BitSliceIndex.md", + "vendor/bitvec-1.0.1/doc/slice/api.md", + "vendor/bitvec-1.0.1/doc/slice/bitop_assign.md", + "vendor/bitvec-1.0.1/doc/slice/format.md", + "vendor/bitvec-1.0.1/doc/slice/from_raw_parts.md", + "vendor/bitvec-1.0.1/doc/slice/from_raw_parts_mut.md", + "vendor/bitvec-1.0.1/doc/slice/from_raw_parts_unchecked.md", + "vendor/bitvec-1.0.1/doc/slice/from_raw_parts_unchecked_mut.md", + "vendor/bitvec-1.0.1/doc/slice/iter.md", + "vendor/bitvec-1.0.1/doc/slice/iter/Chunks.md", + "vendor/bitvec-1.0.1/doc/slice/iter/ChunksExact.md", + "vendor/bitvec-1.0.1/doc/slice/iter/ChunksExactMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/ChunksMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/Iter.md", + "vendor/bitvec-1.0.1/doc/slice/iter/IterMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/IterOnes.md", + "vendor/bitvec-1.0.1/doc/slice/iter/IterZeros.md", + "vendor/bitvec-1.0.1/doc/slice/iter/NoAlias.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RChunks.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RChunksExact.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RChunksExactMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RChunksMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RSplit.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RSplitMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RSplitN.md", + "vendor/bitvec-1.0.1/doc/slice/iter/RSplitNMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/Split.md", + "vendor/bitvec-1.0.1/doc/slice/iter/SplitInclusive.md", + "vendor/bitvec-1.0.1/doc/slice/iter/SplitInclusiveMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/SplitMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/SplitN.md", + "vendor/bitvec-1.0.1/doc/slice/iter/SplitNMut.md", + "vendor/bitvec-1.0.1/doc/slice/iter/Windows.md", + "vendor/bitvec-1.0.1/doc/slice/ops.md", + "vendor/bitvec-1.0.1/doc/slice/specialization.md", + "vendor/bitvec-1.0.1/doc/slice/threadsafe.md", + "vendor/bitvec-1.0.1/doc/slice/traits.md", + "vendor/bitvec-1.0.1/doc/store.md", + "vendor/bitvec-1.0.1/doc/store/BitStore.md", + "vendor/bitvec-1.0.1/doc/vec.md", + "vendor/bitvec-1.0.1/doc/vec/BitVec.md", + "vendor/bitvec-1.0.1/doc/vec/iter.md", + "vendor/bitvec-1.0.1/doc/vec/iter/Drain.md", + "vendor/bitvec-1.0.1/doc/vec/iter/Extend_BitRef.md", + "vendor/bitvec-1.0.1/doc/vec/iter/Extend_bool.md", + "vendor/bitvec-1.0.1/doc/vec/iter/FillStatus.md", + "vendor/bitvec-1.0.1/doc/vec/iter/FromIterator_BitRef.md", + "vendor/bitvec-1.0.1/doc/vec/iter/FromIterator_bool.md", + "vendor/bitvec-1.0.1/doc/vec/iter/IntoIterator.md", + "vendor/bitvec-1.0.1/doc/vec/iter/Splice.md", + "vendor/bitvec-1.0.1/doc/view.md", + "vendor/bitvec-1.0.1/doc/view/AsBits.md", + "vendor/bitvec-1.0.1/doc/view/AsMutBits.md", + "vendor/bitvec-1.0.1/doc/view/BitView.md", + "vendor/bitvec-1.0.1/src/access.rs", + "vendor/bitvec-1.0.1/src/array.rs", + "vendor/bitvec-1.0.1/src/array/api.rs", + "vendor/bitvec-1.0.1/src/array/iter.rs", + "vendor/bitvec-1.0.1/src/array/ops.rs", + "vendor/bitvec-1.0.1/src/array/tests.rs", + "vendor/bitvec-1.0.1/src/array/traits.rs", + "vendor/bitvec-1.0.1/src/boxed.rs", + "vendor/bitvec-1.0.1/src/boxed/api.rs", + "vendor/bitvec-1.0.1/src/boxed/iter.rs", + "vendor/bitvec-1.0.1/src/boxed/ops.rs", + "vendor/bitvec-1.0.1/src/boxed/tests.rs", + "vendor/bitvec-1.0.1/src/boxed/traits.rs", + "vendor/bitvec-1.0.1/src/devel.rs", + "vendor/bitvec-1.0.1/src/domain.rs", + "vendor/bitvec-1.0.1/src/field.rs", + "vendor/bitvec-1.0.1/src/field/io.rs", + "vendor/bitvec-1.0.1/src/field/tests.rs", + "vendor/bitvec-1.0.1/src/index.rs", + "vendor/bitvec-1.0.1/src/lib.rs", + "vendor/bitvec-1.0.1/src/macros.rs", + "vendor/bitvec-1.0.1/src/macros/internal.rs", + "vendor/bitvec-1.0.1/src/macros/tests.rs", + "vendor/bitvec-1.0.1/src/mem.rs", + "vendor/bitvec-1.0.1/src/order.rs", + "vendor/bitvec-1.0.1/src/ptr.rs", + "vendor/bitvec-1.0.1/src/ptr/addr.rs", + "vendor/bitvec-1.0.1/src/ptr/proxy.rs", + "vendor/bitvec-1.0.1/src/ptr/range.rs", + "vendor/bitvec-1.0.1/src/ptr/single.rs", + "vendor/bitvec-1.0.1/src/ptr/span.rs", + "vendor/bitvec-1.0.1/src/ptr/tests.rs", + "vendor/bitvec-1.0.1/src/serdes.rs", + "vendor/bitvec-1.0.1/src/serdes/array.rs", + "vendor/bitvec-1.0.1/src/serdes/slice.rs", + "vendor/bitvec-1.0.1/src/serdes/utils.rs", + "vendor/bitvec-1.0.1/src/slice.rs", + "vendor/bitvec-1.0.1/src/slice/api.rs", + "vendor/bitvec-1.0.1/src/slice/iter.rs", + "vendor/bitvec-1.0.1/src/slice/ops.rs", + "vendor/bitvec-1.0.1/src/slice/specialization.rs", + "vendor/bitvec-1.0.1/src/slice/specialization/lsb0.rs", + "vendor/bitvec-1.0.1/src/slice/specialization/msb0.rs", + "vendor/bitvec-1.0.1/src/slice/tests.rs", + "vendor/bitvec-1.0.1/src/slice/tests/api.rs", + "vendor/bitvec-1.0.1/src/slice/tests/iter.rs", + "vendor/bitvec-1.0.1/src/slice/tests/ops.rs", + "vendor/bitvec-1.0.1/src/slice/tests/traits.rs", + "vendor/bitvec-1.0.1/src/slice/traits.rs", + "vendor/bitvec-1.0.1/src/store.rs", + "vendor/bitvec-1.0.1/src/vec.rs", + "vendor/bitvec-1.0.1/src/vec/api.rs", + "vendor/bitvec-1.0.1/src/vec/iter.rs", + "vendor/bitvec-1.0.1/src/vec/ops.rs", + "vendor/bitvec-1.0.1/src/vec/tests.rs", + "vendor/bitvec-1.0.1/src/vec/tests/api.rs", + "vendor/bitvec-1.0.1/src/vec/tests/iter.rs", + "vendor/bitvec-1.0.1/src/vec/tests/traits.rs", + "vendor/bitvec-1.0.1/src/vec/traits.rs", + "vendor/bitvec-1.0.1/src/view.rs", + ], + crate = "bitvec", + crate_root = "vendor/bitvec-1.0.1/src/lib.rs", + edition = "2021", + features = ["alloc"], + visibility = [], + deps = [ + ":funty-2.0.0", + ":radium-0.7.0", + ":tap-1.0.1", + ":wyz-0.5.1", + ], +) + +cargo.rust_library( + name = "blake2-0.10.6", + srcs = [ + "vendor/blake2-0.10.6/src/as_bytes.rs", + "vendor/blake2-0.10.6/src/consts.rs", + "vendor/blake2-0.10.6/src/lib.rs", + "vendor/blake2-0.10.6/src/macros.rs", + "vendor/blake2-0.10.6/src/simd.rs", + "vendor/blake2-0.10.6/src/simd/simd_opt.rs", + "vendor/blake2-0.10.6/src/simd/simd_opt/u32x4.rs", + "vendor/blake2-0.10.6/src/simd/simd_opt/u64x4.rs", + "vendor/blake2-0.10.6/src/simd/simdint.rs", + "vendor/blake2-0.10.6/src/simd/simdop.rs", + "vendor/blake2-0.10.6/src/simd/simdty.rs", + ], + crate = "blake2", + crate_root = "vendor/blake2-0.10.6/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":digest-0.10.7"], +) + cargo.rust_library( name = "blake2b_simd-1.0.3", srcs = [ @@ -2434,6 +3829,90 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "blake3-0.3.8", + srcs = [ + "vendor/blake3-0.3.8/src/ffi_avx2.rs", + "vendor/blake3-0.3.8/src/ffi_avx512.rs", + "vendor/blake3-0.3.8/src/ffi_neon.rs", + "vendor/blake3-0.3.8/src/ffi_sse2.rs", + "vendor/blake3-0.3.8/src/ffi_sse41.rs", + "vendor/blake3-0.3.8/src/guts.rs", + "vendor/blake3-0.3.8/src/join.rs", + "vendor/blake3-0.3.8/src/lib.rs", + "vendor/blake3-0.3.8/src/platform.rs", + "vendor/blake3-0.3.8/src/portable.rs", + "vendor/blake3-0.3.8/src/rust_avx2.rs", + "vendor/blake3-0.3.8/src/rust_sse2.rs", + "vendor/blake3-0.3.8/src/rust_sse41.rs", + "vendor/blake3-0.3.8/src/test.rs", + "vendor/blake3-0.3.8/src/traits.rs", + ], + crate = "blake3", + crate_root = "vendor/blake3-0.3.8/src/lib.rs", + edition = "2018", + features = [ + "default", + "std", + ], + rustc_flags = ["@$(location :blake3-0.3.8-build-script-run[rustc_flags])"], + visibility = [], + deps = [ + ":arrayref-0.3.8", + ":arrayvec-0.5.2", + ":cfg-if-0.1.10", + ":constant_time_eq-0.1.5", + ":crypto-mac-0.8.0", + ":digest-0.9.0", + ], +) + +cargo.rust_binary( + name = "blake3-0.3.8-build-script-build", + srcs = [ + "vendor/blake3-0.3.8/benches/bench.rs", + "vendor/blake3-0.3.8/build.rs", + "vendor/blake3-0.3.8/src/ffi_avx2.rs", + "vendor/blake3-0.3.8/src/ffi_avx512.rs", + "vendor/blake3-0.3.8/src/ffi_neon.rs", + "vendor/blake3-0.3.8/src/ffi_sse2.rs", + "vendor/blake3-0.3.8/src/ffi_sse41.rs", + "vendor/blake3-0.3.8/src/guts.rs", + "vendor/blake3-0.3.8/src/join.rs", + "vendor/blake3-0.3.8/src/lib.rs", + "vendor/blake3-0.3.8/src/platform.rs", + "vendor/blake3-0.3.8/src/portable.rs", + "vendor/blake3-0.3.8/src/rust_avx2.rs", + "vendor/blake3-0.3.8/src/rust_sse2.rs", + "vendor/blake3-0.3.8/src/rust_sse41.rs", + "vendor/blake3-0.3.8/src/test.rs", + "vendor/blake3-0.3.8/src/traits.rs", + ], + crate = "build_script_build", + crate_root = "vendor/blake3-0.3.8/build.rs", + edition = "2018", + features = [ + "default", + "std", + ], + visibility = [], + deps = [":cc-1.1.12"], +) + +buildscript_run( + name = "blake3-0.3.8-build-script-run", + package_name = "blake3", + buildscript_rule = ":blake3-0.3.8-build-script-build", + env = { + "OPT_LEVEL": "3", + }, + features = [ + "default", + "std", + ], + version = "0.3.8", +) + cargo.rust_library( name = "block-buffer-0.10.4", srcs = [ @@ -2447,6 +3926,16 @@ cargo.rust_library( deps = [":generic-array-0.14.7"], ) +cargo.rust_library( + name = "block-buffer-0.9.0", + srcs = ["vendor/block-buffer-0.9.0/src/lib.rs"], + crate = "block_buffer", + crate_root = "vendor/block-buffer-0.9.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":generic-array-0.14.7"], +) + cargo.rust_library( name = "block-padding-0.3.3", srcs = ["vendor/block-padding-0.3.3/src/lib.rs"], @@ -2491,6 +3980,96 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "borsh-1.5.1", + srcs = [ + "vendor/borsh-1.5.1/Cargo.toml", + "vendor/borsh-1.5.1/src/de/hint.rs", + "vendor/borsh-1.5.1/src/de/mod.rs", + "vendor/borsh-1.5.1/src/error.rs", + "vendor/borsh-1.5.1/src/generate_schema_schema.rs", + "vendor/borsh-1.5.1/src/lib.rs", + "vendor/borsh-1.5.1/src/nostd_io.rs", + "vendor/borsh-1.5.1/src/schema.rs", + "vendor/borsh-1.5.1/src/schema/container_ext.rs", + "vendor/borsh-1.5.1/src/schema/container_ext/max_size.rs", + "vendor/borsh-1.5.1/src/schema/container_ext/validate.rs", + "vendor/borsh-1.5.1/src/schema_helpers.rs", + "vendor/borsh-1.5.1/src/ser/helpers.rs", + "vendor/borsh-1.5.1/src/ser/mod.rs", + ], + crate = "borsh", + crate_root = "vendor/borsh-1.5.1/src/lib.rs", + edition = "2018", + env = { + "CARGO": "/home/bean/.cargo/bin/cargo", + "CARGO_MANIFEST_DIR": "vendor/borsh-1.5.1", + "CARGO_PKG_AUTHORS": "Near Inc ", + "CARGO_PKG_DESCRIPTION": "Binary Object Representation Serializer for Hashing\n", + "CARGO_PKG_NAME": "borsh", + "CARGO_PKG_REPOSITORY": "https://github.com/near/borsh-rs", + "CARGO_PKG_VERSION": "1.5.1", + "CARGO_PKG_VERSION_MAJOR": "1", + "CARGO_PKG_VERSION_MINOR": "5", + "CARGO_PKG_VERSION_PATCH": "1", + }, + features = [ + "borsh-derive", + "derive", + "std", + "unstable__schema", + ], + visibility = [], + deps = [":borsh-derive-1.5.1"], +) + +cargo.rust_library( + name = "borsh-derive-1.5.1", + srcs = [ + "vendor/borsh-derive-1.5.1/src/internals/attributes/field/bounds.rs", + "vendor/borsh-derive-1.5.1/src/internals/attributes/field/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/attributes/field/schema.rs", + "vendor/borsh-derive-1.5.1/src/internals/attributes/field/schema/with_funcs.rs", + "vendor/borsh-derive-1.5.1/src/internals/attributes/item/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/attributes/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/attributes/parsing.rs", + "vendor/borsh-derive-1.5.1/src/internals/cratename.rs", + "vendor/borsh-derive-1.5.1/src/internals/deserialize/enums/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/deserialize/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/deserialize/structs/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/deserialize/unions/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/enum_discriminant.rs", + "vendor/borsh-derive-1.5.1/src/internals/generics.rs", + "vendor/borsh-derive-1.5.1/src/internals/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/schema/enums/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/schema/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/schema/structs/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/serialize/enums/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/serialize/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/serialize/structs/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/serialize/unions/mod.rs", + "vendor/borsh-derive-1.5.1/src/internals/test_helpers.rs", + "vendor/borsh-derive-1.5.1/src/lib.rs", + ], + crate = "borsh_derive", + crate_root = "vendor/borsh-derive-1.5.1/src/lib.rs", + edition = "2018", + features = [ + "default", + "schema", + ], + proc_macro = True, + visibility = [], + deps = [ + ":once_cell-1.20.3", + ":proc-macro-crate-3.2.0", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ":syn_derive-0.1.8", + ], +) + cargo.rust_library( name = "brotli-6.0.0", srcs = [ @@ -2643,6 +4222,12 @@ cargo.rust_library( deps = [":tinyvec-1.8.0"], ) +alias( + name = "bstr", + actual = ":bstr-1.11.3", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "bstr-1.11.3", srcs = [ @@ -2658,14 +4243,30 @@ cargo.rust_library( "vendor/bstr-1.11.3/src/io.rs", "vendor/bstr-1.11.3/src/lib.rs", "vendor/bstr-1.11.3/src/tests.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/grapheme_break_fwd.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/grapheme_break_fwd.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/grapheme_break_fwd.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/grapheme_break_rev.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/grapheme_break_rev.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/grapheme_break_rev.rs", "vendor/bstr-1.11.3/src/unicode/fsm/mod.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/regional_indicator_rev.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/regional_indicator_rev.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/regional_indicator_rev.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/sentence_break_fwd.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/sentence_break_fwd.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/sentence_break_fwd.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/simple_word_fwd.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/simple_word_fwd.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/simple_word_fwd.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/whitespace_anchored_fwd.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/whitespace_anchored_fwd.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/whitespace_anchored_fwd.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/whitespace_anchored_rev.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/whitespace_anchored_rev.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/whitespace_anchored_rev.rs", + "vendor/bstr-1.11.3/src/unicode/fsm/word_break_fwd.bigendian.dfa", + "vendor/bstr-1.11.3/src/unicode/fsm/word_break_fwd.littleendian.dfa", "vendor/bstr-1.11.3/src/unicode/fsm/word_break_fwd.rs", "vendor/bstr-1.11.3/src/unicode/grapheme.rs", "vendor/bstr-1.11.3/src/unicode/mod.rs", @@ -2708,6 +4309,49 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "bytecheck-0.6.12", + srcs = [ + "vendor/bytecheck-0.6.12/src/lib.rs", + "vendor/bytecheck-0.6.12/src/uuid.rs", + ], + crate = "bytecheck", + crate_root = "vendor/bytecheck-0.6.12/src/lib.rs", + edition = "2021", + features = [ + "simdutf8", + "std", + ], + visibility = [], + deps = [ + ":bytecheck_derive-0.6.12", + ":ptr_meta-0.1.4", + ":simdutf8-0.1.4", + ], +) + +cargo.rust_library( + name = "bytecheck_derive-0.6.12", + srcs = ["vendor/bytecheck_derive-0.6.12/src/lib.rs"], + crate = "bytecheck_derive", + crate_root = "vendor/bytecheck_derive-0.6.12/src/lib.rs", + edition = "2021", + features = ["std"], + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-1.0.109", + ], +) + +alias( + name = "byteorder", + actual = ":byteorder-1.5.0", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "byteorder-1.5.0", srcs = [ @@ -2724,6 +4368,12 @@ cargo.rust_library( visibility = [], ) +alias( + name = "bytes", + actual = ":bytes-1.10.0", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "bytes-1.10.0", srcs = [ @@ -2767,6 +4417,24 @@ cargo.rust_library( deps = [":bytes-1.10.0"], ) +cargo.rust_library( + name = "cbc-0.1.2", + srcs = [ + "vendor/cbc-0.1.2/src/decrypt.rs", + "vendor/cbc-0.1.2/src/encrypt.rs", + "vendor/cbc-0.1.2/src/lib.rs", + ], + crate = "cbc", + crate_root = "vendor/cbc-0.1.2/src/lib.rs", + edition = "2021", + features = [ + "block-padding", + "default", + ], + visibility = [], + deps = [":cipher-0.4.4"], +) + cargo.rust_library( name = "cc-1.1.12", srcs = [ @@ -2817,8 +4485,471 @@ cargo.rust_library( ], ) -cargo.rust_library( - name = "cexpr-0.6.0", +alias( + name = "cedar-policy", + actual = ":cedar-policy-4.3.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "cedar-policy-4.3.1", + srcs = [ + "vendor/cedar-policy-4.3.1/README.md", + "vendor/cedar-policy-4.3.1/experimental_warning.md", + "vendor/cedar-policy-4.3.1/src/api.rs", + "vendor/cedar-policy-4.3.1/src/api/err.rs", + "vendor/cedar-policy-4.3.1/src/api/err/validation_errors.rs", + "vendor/cedar-policy-4.3.1/src/api/err/validation_warnings.rs", + "vendor/cedar-policy-4.3.1/src/api/id.rs", + "vendor/cedar-policy-4.3.1/src/ffi/check_parse.rs", + "vendor/cedar-policy-4.3.1/src/ffi/convert.rs", + "vendor/cedar-policy-4.3.1/src/ffi/format.rs", + "vendor/cedar-policy-4.3.1/src/ffi/is_authorized.rs", + "vendor/cedar-policy-4.3.1/src/ffi/mod.rs", + "vendor/cedar-policy-4.3.1/src/ffi/tests.rs", + "vendor/cedar-policy-4.3.1/src/ffi/utils.rs", + "vendor/cedar-policy-4.3.1/src/ffi/validate.rs", + "vendor/cedar-policy-4.3.1/src/ffi/version.rs", + "vendor/cedar-policy-4.3.1/src/lib.rs", + "vendor/cedar-policy-4.3.1/src/prop_test_policy_set.rs", + "vendor/cedar-policy-4.3.1/src/tests.rs", + ], + crate = "cedar_policy", + crate_root = "vendor/cedar-policy-4.3.1/src/lib.rs", + dlopen_enable = True, + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/cedar-policy-4.3.1", + "CARGO_PKG_AUTHORS": "", + "CARGO_PKG_DESCRIPTION": "Cedar is a language for defining permissions as policies, which describe who should have access to what.", + "CARGO_PKG_NAME": "cedar-policy", + "CARGO_PKG_REPOSITORY": "https://github.com/cedar-policy/cedar", + "CARGO_PKG_VERSION": "4.3.1", + "CARGO_PKG_VERSION_MAJOR": "4", + "CARGO_PKG_VERSION_MINOR": "3", + "CARGO_PKG_VERSION_PATCH": "1", + }, + features = [ + "decimal", + "default", + "ipaddr", + ], + linkable_alias = "cedar-policy", + visibility = [], + deps = [ + ":cedar-policy-core-4.3.1", + ":cedar-policy-formatter-4.3.1", + ":cedar-policy-validator-4.3.1", + ":itertools-0.14.0", + ":lalrpop-util-0.22.0", + ":lazy_static-1.5.0", + ":miette-7.5.0", + ":nonempty-0.10.0", + ":ref-cast-1.0.23", + ":semver-1.0.25", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":serde_with-3.12.0", + ":smol_str-0.3.1", + ":thiserror-2.0.11", + ], +) + +cargo.rust_library( + name = "cedar-policy-core-4.3.1", + srcs = [ + "vendor/cedar-policy-core-4.3.1/src/ast.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/annotation.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/entity.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/expr.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/expr_iterator.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/extension.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/id.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/integer.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/literal.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/name.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/ops.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/partial_value.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/pattern.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/policy.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/policy_set.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/request.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/restricted_expr.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/types.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/value.rs", + "vendor/cedar-policy-core-4.3.1/src/authorizer.rs", + "vendor/cedar-policy-core-4.3.1/src/authorizer/err.rs", + "vendor/cedar-policy-core-4.3.1/src/authorizer/partial_response.rs", + "vendor/cedar-policy-core-4.3.1/src/entities.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/conformance.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/conformance/err.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/err.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/context.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/entities.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/err.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/schema.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/schema_types.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/value.rs", + "vendor/cedar-policy-core-4.3.1/src/error_macros.rs", + "vendor/cedar-policy-core-4.3.1/src/est.rs", + "vendor/cedar-policy-core-4.3.1/src/est/annotation.rs", + "vendor/cedar-policy-core-4.3.1/src/est/err.rs", + "vendor/cedar-policy-core-4.3.1/src/est/expr.rs", + "vendor/cedar-policy-core-4.3.1/src/est/policy_set.rs", + "vendor/cedar-policy-core-4.3.1/src/est/scope_constraints.rs", + "vendor/cedar-policy-core-4.3.1/src/evaluator.rs", + "vendor/cedar-policy-core-4.3.1/src/evaluator/err.rs", + "vendor/cedar-policy-core-4.3.1/src/expr_builder.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/datetime.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/decimal.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/ipaddr.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/partial_evaluation.rs", + "vendor/cedar-policy-core-4.3.1/src/from_normalized_str.rs", + "vendor/cedar-policy-core-4.3.1/src/fuzzy_match.rs", + "vendor/cedar-policy-core-4.3.1/src/jsonvalue.rs", + "vendor/cedar-policy-core-4.3.1/src/lib.rs", + "vendor/cedar-policy-core-4.3.1/src/parser.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/cst.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/cst_to_ast.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/cst_to_ast/to_ref_or_refs.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/err.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/fmt.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/loc.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/node.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/text_to_cst.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/unescape.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/util.rs", + "vendor/cedar-policy-core-4.3.1/src/test_utils.rs", + "vendor/cedar-policy-core-4.3.1/src/transitive_closure.rs", + "vendor/cedar-policy-core-4.3.1/src/transitive_closure/err.rs", + ], + crate = "cedar_policy_core", + crate_root = "vendor/cedar-policy-core-4.3.1/src/lib.rs", + edition = "2021", + env = { + "OUT_DIR": "$(location :cedar-policy-core-4.3.1-build-script-run[out_dir])", + }, + features = [ + "decimal", + "default", + "ipaddr", + ], + visibility = [], + deps = [ + ":educe-0.6.0", + ":either-1.13.0", + ":itertools-0.14.0", + ":lalrpop-util-0.22.0", + ":lazy_static-1.5.0", + ":miette-7.5.0", + ":nonempty-0.10.0", + ":ref-cast-1.0.23", + ":regex-1.11.1", + ":rustc_lexer-0.1.0", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":serde_with-3.12.0", + ":smol_str-0.3.1", + ":stacker-0.1.15", + ":thiserror-2.0.11", + ], +) + +cargo.rust_binary( + name = "cedar-policy-core-4.3.1-build-script-build", + srcs = [ + "vendor/cedar-policy-core-4.3.1/build.rs", + "vendor/cedar-policy-core-4.3.1/src/ast.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/annotation.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/entity.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/expr.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/expr_iterator.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/extension.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/id.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/integer.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/literal.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/name.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/ops.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/partial_value.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/pattern.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/policy.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/policy_set.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/request.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/restricted_expr.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/types.rs", + "vendor/cedar-policy-core-4.3.1/src/ast/value.rs", + "vendor/cedar-policy-core-4.3.1/src/authorizer.rs", + "vendor/cedar-policy-core-4.3.1/src/authorizer/err.rs", + "vendor/cedar-policy-core-4.3.1/src/authorizer/partial_response.rs", + "vendor/cedar-policy-core-4.3.1/src/entities.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/conformance.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/conformance/err.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/err.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/context.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/entities.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/err.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/schema.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/schema_types.rs", + "vendor/cedar-policy-core-4.3.1/src/entities/json/value.rs", + "vendor/cedar-policy-core-4.3.1/src/error_macros.rs", + "vendor/cedar-policy-core-4.3.1/src/est.rs", + "vendor/cedar-policy-core-4.3.1/src/est/annotation.rs", + "vendor/cedar-policy-core-4.3.1/src/est/err.rs", + "vendor/cedar-policy-core-4.3.1/src/est/expr.rs", + "vendor/cedar-policy-core-4.3.1/src/est/policy_set.rs", + "vendor/cedar-policy-core-4.3.1/src/est/scope_constraints.rs", + "vendor/cedar-policy-core-4.3.1/src/evaluator.rs", + "vendor/cedar-policy-core-4.3.1/src/evaluator/err.rs", + "vendor/cedar-policy-core-4.3.1/src/expr_builder.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/datetime.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/decimal.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/ipaddr.rs", + "vendor/cedar-policy-core-4.3.1/src/extensions/partial_evaluation.rs", + "vendor/cedar-policy-core-4.3.1/src/from_normalized_str.rs", + "vendor/cedar-policy-core-4.3.1/src/fuzzy_match.rs", + "vendor/cedar-policy-core-4.3.1/src/jsonvalue.rs", + "vendor/cedar-policy-core-4.3.1/src/lib.rs", + "vendor/cedar-policy-core-4.3.1/src/parser.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/cst.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/cst_to_ast.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/cst_to_ast/to_ref_or_refs.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/err.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/fmt.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/loc.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/node.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/text_to_cst.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/unescape.rs", + "vendor/cedar-policy-core-4.3.1/src/parser/util.rs", + "vendor/cedar-policy-core-4.3.1/src/test_utils.rs", + "vendor/cedar-policy-core-4.3.1/src/transitive_closure.rs", + "vendor/cedar-policy-core-4.3.1/src/transitive_closure/err.rs", + ], + crate = "build_script_build", + crate_root = "vendor/cedar-policy-core-4.3.1/build.rs", + edition = "2021", + features = [ + "decimal", + "default", + "ipaddr", + ], + visibility = [], + deps = [":lalrpop-0.22.0"], +) + +buildscript_run( + name = "cedar-policy-core-4.3.1-build-script-run", + package_name = "cedar-policy-core", + buildscript_rule = ":cedar-policy-core-4.3.1-build-script-build", + features = [ + "decimal", + "default", + "ipaddr", + ], + version = "4.3.1", +) + +cargo.rust_library( + name = "cedar-policy-formatter-4.3.1", + srcs = [ + "vendor/cedar-policy-formatter-4.3.1/src/lib.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/config.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/doc.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/fmt.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/lexer.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/mod.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/token.rs", + "vendor/cedar-policy-formatter-4.3.1/src/pprint/utils.rs", + ], + crate = "cedar_policy_formatter", + crate_root = "vendor/cedar-policy-formatter-4.3.1/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":cedar-policy-core-4.3.1", + ":itertools-0.14.0", + ":lazy_static-1.5.0", + ":logos-0.15.0", + ":miette-7.5.0", + ":pretty-0.12.3", + ":regex-1.11.1", + ":smol_str-0.3.1", + ], +) + +cargo.rust_library( + name = "cedar-policy-validator-4.3.1", + srcs = [ + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/ast.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/err.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/fmt.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/parser.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/test.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/to_json_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/coreschema.rs", + "vendor/cedar-policy-validator-4.3.1/src/diagnostics.rs", + "vendor/cedar-policy-validator-4.3.1/src/diagnostics/validation_errors.rs", + "vendor/cedar-policy-validator-4.3.1/src/diagnostics/validation_warnings.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/analysis.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/loader.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/slicing.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/type_annotations.rs", + "vendor/cedar-policy-validator-4.3.1/src/expr_iterator.rs", + "vendor/cedar-policy-validator-4.3.1/src/extension_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/datetime.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/decimal.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/ipaddr.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/partial_evaluation.rs", + "vendor/cedar-policy-validator-4.3.1/src/json_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/level_validate.rs", + "vendor/cedar-policy-validator-4.3.1/src/lib.rs", + "vendor/cedar-policy-validator-4.3.1/src/rbac.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/action.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/entity_type.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/err.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/namespace_def.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/raw_name.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/test_579.rs", + "vendor/cedar-policy-validator-4.3.1/src/str_checks.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/expr.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/extensions.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/namespace.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/optional_attributes.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/partial.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/policy.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/strict.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/tags.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/test_utils.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/type_annotation.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/unspecified_entity.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/typecheck_answer.rs", + "vendor/cedar-policy-validator-4.3.1/src/types.rs", + "vendor/cedar-policy-validator-4.3.1/src/types/capability.rs", + "vendor/cedar-policy-validator-4.3.1/src/types/request_env.rs", + ], + crate = "cedar_policy_validator", + crate_root = "vendor/cedar-policy-validator-4.3.1/src/lib.rs", + edition = "2021", + env = { + "OUT_DIR": "$(location :cedar-policy-validator-4.3.1-build-script-run[out_dir])", + }, + features = [ + "decimal", + "default", + "ipaddr", + ], + visibility = [], + deps = [ + ":cedar-policy-core-4.3.1", + ":educe-0.6.0", + ":itertools-0.14.0", + ":lalrpop-util-0.22.0", + ":lazy_static-1.5.0", + ":miette-7.5.0", + ":nonempty-0.10.0", + ":ref-cast-1.0.23", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":serde_with-3.12.0", + ":smol_str-0.3.1", + ":stacker-0.1.15", + ":thiserror-2.0.11", + ":unicode-security-0.1.1", + ], +) + +cargo.rust_binary( + name = "cedar-policy-validator-4.3.1-build-script-build", + srcs = [ + "vendor/cedar-policy-validator-4.3.1/build.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/ast.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/err.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/fmt.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/parser.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/test.rs", + "vendor/cedar-policy-validator-4.3.1/src/cedar_schema/to_json_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/coreschema.rs", + "vendor/cedar-policy-validator-4.3.1/src/diagnostics.rs", + "vendor/cedar-policy-validator-4.3.1/src/diagnostics/validation_errors.rs", + "vendor/cedar-policy-validator-4.3.1/src/diagnostics/validation_warnings.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/analysis.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/loader.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/slicing.rs", + "vendor/cedar-policy-validator-4.3.1/src/entity_manifest/type_annotations.rs", + "vendor/cedar-policy-validator-4.3.1/src/expr_iterator.rs", + "vendor/cedar-policy-validator-4.3.1/src/extension_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/datetime.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/decimal.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/ipaddr.rs", + "vendor/cedar-policy-validator-4.3.1/src/extensions/partial_evaluation.rs", + "vendor/cedar-policy-validator-4.3.1/src/json_schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/level_validate.rs", + "vendor/cedar-policy-validator-4.3.1/src/lib.rs", + "vendor/cedar-policy-validator-4.3.1/src/rbac.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/action.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/entity_type.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/err.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/namespace_def.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/raw_name.rs", + "vendor/cedar-policy-validator-4.3.1/src/schema/test_579.rs", + "vendor/cedar-policy-validator-4.3.1/src/str_checks.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/expr.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/extensions.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/namespace.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/optional_attributes.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/partial.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/policy.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/strict.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/tags.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/test_utils.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/type_annotation.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/test/unspecified_entity.rs", + "vendor/cedar-policy-validator-4.3.1/src/typecheck/typecheck_answer.rs", + "vendor/cedar-policy-validator-4.3.1/src/types.rs", + "vendor/cedar-policy-validator-4.3.1/src/types/capability.rs", + "vendor/cedar-policy-validator-4.3.1/src/types/request_env.rs", + ], + crate = "build_script_build", + crate_root = "vendor/cedar-policy-validator-4.3.1/build.rs", + edition = "2021", + features = [ + "decimal", + "default", + "ipaddr", + ], + visibility = [], + deps = [":lalrpop-0.22.0"], +) + +buildscript_run( + name = "cedar-policy-validator-4.3.1-build-script-run", + package_name = "cedar-policy-validator", + buildscript_rule = ":cedar-policy-validator-4.3.1-build-script-build", + features = [ + "decimal", + "default", + "ipaddr", + ], + version = "4.3.1", +) + +cargo.rust_library( + name = "cexpr-0.6.0", srcs = [ "vendor/cexpr-0.6.0/src/expr.rs", "vendor/cexpr-0.6.0/src/lib.rs", @@ -2832,6 +4963,15 @@ cargo.rust_library( deps = [":nom-7.1.3"], ) +cargo.rust_library( + name = "cfg-if-0.1.10", + srcs = ["vendor/cfg-if-0.1.10/src/lib.rs"], + crate = "cfg_if", + crate_root = "vendor/cfg-if-0.1.10/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "cfg-if-1.0.0", srcs = ["vendor/cfg-if-1.0.0/src/lib.rs"], @@ -2841,6 +4981,57 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "cfg_aliases-0.2.1", + srcs = ["vendor/cfg_aliases-0.2.1/src/lib.rs"], + crate = "cfg_aliases", + crate_root = "vendor/cfg_aliases-0.2.1/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "chacha20-0.9.1", + srcs = [ + "vendor/chacha20-0.9.1/src/backends.rs", + "vendor/chacha20-0.9.1/src/backends/avx2.rs", + "vendor/chacha20-0.9.1/src/backends/neon.rs", + "vendor/chacha20-0.9.1/src/backends/soft.rs", + "vendor/chacha20-0.9.1/src/backends/sse2.rs", + "vendor/chacha20-0.9.1/src/legacy.rs", + "vendor/chacha20-0.9.1/src/lib.rs", + "vendor/chacha20-0.9.1/src/xchacha.rs", + ], + crate = "chacha20", + crate_root = "vendor/chacha20-0.9.1/src/lib.rs", + edition = "2021", + platform = { + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":cipher-0.4.4", + ], +) + +alias( + name = "chrono", + actual = ":chrono-0.4.39", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "chrono-0.4.39", srcs = [ @@ -2964,6 +5155,9 @@ cargo.rust_library( crate = "clang_sys", crate_root = "vendor/clang-sys-1.8.1/src/lib.rs", edition = "2021", + env = { + "OUT_DIR": "$(location :clang-sys-1.8.1-build-script-run[out_dir])", + }, features = [ "clang_3_5", "clang_3_6", @@ -2984,6 +5178,58 @@ cargo.rust_library( ], ) +cargo.rust_binary( + name = "clang-sys-1.8.1-build-script-build", + srcs = [ + "vendor/clang-sys-1.8.1/build.rs", + "vendor/clang-sys-1.8.1/build/common.rs", + "vendor/clang-sys-1.8.1/build/dynamic.rs", + "vendor/clang-sys-1.8.1/build/macros.rs", + "vendor/clang-sys-1.8.1/build/static.rs", + "vendor/clang-sys-1.8.1/src/lib.rs", + "vendor/clang-sys-1.8.1/src/link.rs", + "vendor/clang-sys-1.8.1/src/support.rs", + "vendor/clang-sys-1.8.1/tests/build.rs", + "vendor/clang-sys-1.8.1/tests/lib.rs", + ], + crate = "build_script_build", + crate_root = "vendor/clang-sys-1.8.1/build.rs", + edition = "2021", + 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", + ], + visibility = [], + deps = [":glob-0.3.1"], +) + +buildscript_run( + name = "clang-sys-1.8.1-build-script-run", + package_name = "clang-sys", + buildscript_rule = ":clang-sys-1.8.1-build-script-build", + 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", + ], + version = "1.8.1", +) + alias( name = "clap", actual = ":clap-4.5.28", @@ -3189,6 +5435,37 @@ cargo.rust_library( visibility = [], ) +alias( + name = "colored", + actual = ":colored-3.0.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "colored-3.0.0", + srcs = [ + "vendor/colored-3.0.0/src/color.rs", + "vendor/colored-3.0.0/src/control.rs", + "vendor/colored-3.0.0/src/customcolors.rs", + "vendor/colored-3.0.0/src/error.rs", + "vendor/colored-3.0.0/src/formatters.rs", + "vendor/colored-3.0.0/src/lib.rs", + "vendor/colored-3.0.0/src/style.rs", + ], + crate = "colored", + crate_root = "vendor/colored-3.0.0/src/lib.rs", + edition = "2021", + platform = { + "windows-gnu": dict( + deps = [":windows-sys-0.59.0"], + ), + "windows-msvc": dict( + deps = [":windows-sys-0.59.0"], + ), + }, + visibility = [], +) + cargo.rust_library( name = "concat-idents-1.1.5", srcs = ["vendor/concat-idents-1.1.5/src/lib.rs"], @@ -3223,6 +5500,78 @@ cargo.rust_library( deps = [":crossbeam-utils-0.8.20"], ) +alias( + name = "config", + actual = ":config-0.15.7", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "config-0.15.7", + srcs = [ + "vendor/config-0.15.7/src/builder.rs", + "vendor/config-0.15.7/src/config.rs", + "vendor/config-0.15.7/src/de.rs", + "vendor/config-0.15.7/src/env.rs", + "vendor/config-0.15.7/src/error.rs", + "vendor/config-0.15.7/src/file/format/ini.rs", + "vendor/config-0.15.7/src/file/format/json.rs", + "vendor/config-0.15.7/src/file/format/json5.rs", + "vendor/config-0.15.7/src/file/format/mod.rs", + "vendor/config-0.15.7/src/file/format/ron.rs", + "vendor/config-0.15.7/src/file/format/toml.rs", + "vendor/config-0.15.7/src/file/format/yaml.rs", + "vendor/config-0.15.7/src/file/mod.rs", + "vendor/config-0.15.7/src/file/source/file.rs", + "vendor/config-0.15.7/src/file/source/mod.rs", + "vendor/config-0.15.7/src/file/source/string.rs", + "vendor/config-0.15.7/src/format.rs", + "vendor/config-0.15.7/src/lib.rs", + "vendor/config-0.15.7/src/map.rs", + "vendor/config-0.15.7/src/path/mod.rs", + "vendor/config-0.15.7/src/path/parser.rs", + "vendor/config-0.15.7/src/ser.rs", + "vendor/config-0.15.7/src/source.rs", + "vendor/config-0.15.7/src/value.rs", + ], + crate = "config", + crate_root = "vendor/config-0.15.7/src/lib.rs", + edition = "2018", + features = [ + "async", + "async-trait", + "convert-case", + "convert_case", + "default", + "ini", + "json", + "json5", + "json5_rs", + "ron", + "rust-ini", + "serde_json", + "toml", + "yaml", + "yaml-rust2", + ], + named_deps = { + "json5_rs": ":json5-0.4.1", + }, + visibility = [], + deps = [ + ":async-trait-0.1.86", + ":convert_case-0.6.0", + ":pathdiff-0.2.1", + ":ron-0.8.1", + ":rust-ini-0.21.1", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":toml-0.8.19", + ":winnow-0.7.1", + ":yaml-rust2-0.9.0", + ], +) + cargo.rust_library( name = "const-oid-0.9.6", srcs = [ @@ -3242,6 +5591,164 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "const-random-0.1.18", + srcs = ["vendor/const-random-0.1.18/src/lib.rs"], + crate = "const_random", + crate_root = "vendor/const-random-0.1.18/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":const-random-macro-0.1.16"], +) + +cargo.rust_library( + name = "const-random-macro-0.1.16", + srcs = [ + "vendor/const-random-macro-0.1.16/src/lib.rs", + "vendor/const-random-macro-0.1.16/src/span.rs", + ], + crate = "const_random_macro", + crate_root = "vendor/const-random-macro-0.1.16/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":getrandom-0.2.15", + ":once_cell-1.20.3", + ":tiny-keccak-2.0.2", + ], +) + +cargo.rust_library( + name = "const_fn-0.4.10", + srcs = [ + "vendor/const_fn-0.4.10/src/ast.rs", + "vendor/const_fn-0.4.10/src/error.rs", + "vendor/const_fn-0.4.10/src/iter.rs", + "vendor/const_fn-0.4.10/src/lib.rs", + "vendor/const_fn-0.4.10/src/to_tokens.rs", + "vendor/const_fn-0.4.10/src/utils.rs", + ], + crate = "const_fn", + crate_root = "vendor/const_fn-0.4.10/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], +) + +cargo.rust_library( + name = "const_format-0.2.32", + srcs = [ + "vendor/const_format-0.2.32/src/__ascii_case_conv.rs", + "vendor/const_format-0.2.32/src/__ascii_case_conv/word_iterator.rs", + "vendor/const_format-0.2.32/src/__hidden_utils.rs", + "vendor/const_format-0.2.32/src/__str_methods.rs", + "vendor/const_format-0.2.32/src/__str_methods/pattern.rs", + "vendor/const_format-0.2.32/src/__str_methods/str_indexing.rs", + "vendor/const_format-0.2.32/src/__str_methods/str_repeat.rs", + "vendor/const_format-0.2.32/src/__str_methods/str_replace.rs", + "vendor/const_format-0.2.32/src/__str_methods/str_splice.rs", + "vendor/const_format-0.2.32/src/__str_methods/str_split.rs", + "vendor/const_format-0.2.32/src/char_encoding.rs", + "vendor/const_format-0.2.32/src/char_encoding/tests.rs", + "vendor/const_format-0.2.32/src/const_debug_derive.rs", + "vendor/const_format-0.2.32/src/const_generic_concatcp.rs", + "vendor/const_format-0.2.32/src/doctests.rs", + "vendor/const_format-0.2.32/src/equality.rs", + "vendor/const_format-0.2.32/src/fmt.rs", + "vendor/const_format-0.2.32/src/fmt/error.rs", + "vendor/const_format-0.2.32/src/fmt/formatter.rs", + "vendor/const_format-0.2.32/src/fmt/std_type_impls.rs", + "vendor/const_format-0.2.32/src/fmt/std_type_impls/ranges.rs", + "vendor/const_format-0.2.32/src/fmt/str_writer.rs", + "vendor/const_format-0.2.32/src/fmt/str_writer_mut.rs", + "vendor/const_format-0.2.32/src/for_assert_macros.rs", + "vendor/const_format-0.2.32/src/for_examples.rs", + "vendor/const_format-0.2.32/src/formatting.rs", + "vendor/const_format-0.2.32/src/lib.rs", + "vendor/const_format-0.2.32/src/macros.rs", + "vendor/const_format-0.2.32/src/macros/assertions.rs", + "vendor/const_format-0.2.32/src/macros/assertions/assertc_macros.rs", + "vendor/const_format-0.2.32/src/macros/assertions/assertcp_macros.rs", + "vendor/const_format-0.2.32/src/macros/call_debug_fmt.rs", + "vendor/const_format-0.2.32/src/macros/constructors.rs", + "vendor/const_format-0.2.32/src/macros/fmt_macros.rs", + "vendor/const_format-0.2.32/src/macros/helper_macros.rs", + "vendor/const_format-0.2.32/src/macros/impl_fmt.rs", + "vendor/const_format-0.2.32/src/macros/map_ascii_case.rs", + "vendor/const_format-0.2.32/src/macros/str_methods.rs", + "vendor/const_format-0.2.32/src/marker_traits.rs", + "vendor/const_format-0.2.32/src/marker_traits/format_marker.rs", + "vendor/const_format-0.2.32/src/marker_traits/write_marker.rs", + "vendor/const_format-0.2.32/src/msg.rs", + "vendor/const_format-0.2.32/src/pargument.rs", + "vendor/const_format-0.2.32/src/slice_cmp.rs", + "vendor/const_format-0.2.32/src/test_utils.rs", + "vendor/const_format-0.2.32/src/utils.rs", + "vendor/const_format-0.2.32/src/wrapper_types.rs", + "vendor/const_format-0.2.32/src/wrapper_types/ascii_str.rs", + "vendor/const_format-0.2.32/src/wrapper_types/pwrapper.rs", + "vendor/const_format-0.2.32/src/wrapper_types/pwrapper/tests.rs", + "vendor/const_format-0.2.32/src/wrapper_types/sliced.rs", + ], + crate = "const_format", + crate_root = "vendor/const_format-0.2.32/src/lib.rs", + edition = "2021", + features = ["default"], + visibility = [], + deps = [":const_format_proc_macros-0.2.32"], +) + +cargo.rust_library( + name = "const_format_proc_macros-0.2.32", + srcs = [ + "vendor/const_format_proc_macros-0.2.32/src/datastructure.rs", + "vendor/const_format_proc_macros-0.2.32/src/datastructure/field_map.rs", + "vendor/const_format_proc_macros-0.2.32/src/derive_debug.rs", + "vendor/const_format_proc_macros-0.2.32/src/derive_debug/attribute_parsing.rs", + "vendor/const_format_proc_macros-0.2.32/src/derive_debug/syntax.rs", + "vendor/const_format_proc_macros-0.2.32/src/derive_debug/type_detection.rs", + "vendor/const_format_proc_macros-0.2.32/src/error.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_args.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_args/parsing.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_macro.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_macro/tests.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_str.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_str/errors.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_str/parsing.rs", + "vendor/const_format_proc_macros-0.2.32/src/format_str/tests.rs", + "vendor/const_format_proc_macros-0.2.32/src/formatting.rs", + "vendor/const_format_proc_macros-0.2.32/src/lib.rs", + "vendor/const_format_proc_macros-0.2.32/src/macros.rs", + "vendor/const_format_proc_macros-0.2.32/src/parse_utils.rs", + "vendor/const_format_proc_macros-0.2.32/src/respan_to_macro.rs", + "vendor/const_format_proc_macros-0.2.32/src/shared_arg_parsing.rs", + "vendor/const_format_proc_macros-0.2.32/src/spanned.rs", + "vendor/const_format_proc_macros-0.2.32/src/test_utils.rs", + "vendor/const_format_proc_macros-0.2.32/src/utils.rs", + ], + crate = "const_format_proc_macros", + crate_root = "vendor/const_format_proc_macros-0.2.32/src/lib.rs", + edition = "2021", + features = ["default"], + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":unicode-xid-0.2.4", + ], +) + +cargo.rust_library( + name = "constant_time_eq-0.1.5", + srcs = ["vendor/constant_time_eq-0.1.5/src/lib.rs"], + crate = "constant_time_eq", + crate_root = "vendor/constant_time_eq-0.1.5/src/lib.rs", + edition = "2015", + visibility = [], +) + cargo.rust_library( name = "constant_time_eq-0.3.1", srcs = ["vendor/constant_time_eq-0.3.1/src/lib.rs"], @@ -3265,7 +5772,23 @@ cargo.rust_library( ) cargo.rust_library( - name = "cookie-0.16.2", + name = "convert_case-0.6.0", + srcs = [ + "vendor/convert_case-0.6.0/src/case.rs", + "vendor/convert_case-0.6.0/src/converter.rs", + "vendor/convert_case-0.6.0/src/lib.rs", + "vendor/convert_case-0.6.0/src/pattern.rs", + "vendor/convert_case-0.6.0/src/segmentation.rs", + ], + crate = "convert_case", + crate_root = "vendor/convert_case-0.6.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":unicode-segmentation-1.11.0"], +) + +cargo.rust_library( + name = "cookie-0.16.2", srcs = [ "vendor/cookie-0.16.2/src/builder.rs", "vendor/cookie-0.16.2/src/delta.rs", @@ -3410,6 +5933,53 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "crc-3.2.1", + srcs = [ + "vendor/crc-3.2.1/src/crc128.rs", + "vendor/crc-3.2.1/src/crc128/bytewise.rs", + "vendor/crc-3.2.1/src/crc128/nolookup.rs", + "vendor/crc-3.2.1/src/crc128/slice16.rs", + "vendor/crc-3.2.1/src/crc16.rs", + "vendor/crc-3.2.1/src/crc16/bytewise.rs", + "vendor/crc-3.2.1/src/crc16/nolookup.rs", + "vendor/crc-3.2.1/src/crc16/slice16.rs", + "vendor/crc-3.2.1/src/crc32.rs", + "vendor/crc-3.2.1/src/crc32/bytewise.rs", + "vendor/crc-3.2.1/src/crc32/nolookup.rs", + "vendor/crc-3.2.1/src/crc32/slice16.rs", + "vendor/crc-3.2.1/src/crc64.rs", + "vendor/crc-3.2.1/src/crc64/bytewise.rs", + "vendor/crc-3.2.1/src/crc64/nolookup.rs", + "vendor/crc-3.2.1/src/crc64/slice16.rs", + "vendor/crc-3.2.1/src/crc8.rs", + "vendor/crc-3.2.1/src/crc8/bytewise.rs", + "vendor/crc-3.2.1/src/crc8/nolookup.rs", + "vendor/crc-3.2.1/src/crc8/slice16.rs", + "vendor/crc-3.2.1/src/lib.rs", + "vendor/crc-3.2.1/src/table.rs", + "vendor/crc-3.2.1/src/util.rs", + ], + crate = "crc", + crate_root = "vendor/crc-3.2.1/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":crc-catalog-2.4.0"], +) + +cargo.rust_library( + name = "crc-catalog-2.4.0", + srcs = [ + "vendor/crc-catalog-2.4.0/src/algorithm.rs", + "vendor/crc-catalog-2.4.0/src/lib.rs", + "vendor/crc-catalog-2.4.0/src/poly.rs", + ], + crate = "crc_catalog", + crate_root = "vendor/crc-catalog-2.4.0/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "crc32fast-1.4.2", srcs = [ @@ -3462,6 +6032,43 @@ cargo.rust_library( ], ) +alias( + name = "crossbeam-channel", + actual = ":crossbeam-channel-0.5.13", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "crossbeam-channel-0.5.13", + srcs = [ + "vendor/crossbeam-channel-0.5.13/src/channel.rs", + "vendor/crossbeam-channel-0.5.13/src/context.rs", + "vendor/crossbeam-channel-0.5.13/src/counter.rs", + "vendor/crossbeam-channel-0.5.13/src/err.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/array.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/at.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/list.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/mod.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/never.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/tick.rs", + "vendor/crossbeam-channel-0.5.13/src/flavors/zero.rs", + "vendor/crossbeam-channel-0.5.13/src/lib.rs", + "vendor/crossbeam-channel-0.5.13/src/select.rs", + "vendor/crossbeam-channel-0.5.13/src/select_macro.rs", + "vendor/crossbeam-channel-0.5.13/src/utils.rs", + "vendor/crossbeam-channel-0.5.13/src/waker.rs", + ], + crate = "crossbeam_channel", + crate_root = "vendor/crossbeam-channel-0.5.13/src/lib.rs", + edition = "2021", + features = [ + "default", + "std", + ], + visibility = [], + deps = [":crossbeam-utils-0.8.20"], +) + cargo.rust_library( name = "crossbeam-deque-0.8.5", srcs = [ @@ -3509,6 +6116,25 @@ cargo.rust_library( deps = [":crossbeam-utils-0.8.20"], ) +cargo.rust_library( + name = "crossbeam-queue-0.3.11", + srcs = [ + "vendor/crossbeam-queue-0.3.11/src/array_queue.rs", + "vendor/crossbeam-queue-0.3.11/src/lib.rs", + "vendor/crossbeam-queue-0.3.11/src/seg_queue.rs", + ], + crate = "crossbeam_queue", + crate_root = "vendor/crossbeam-queue-0.3.11/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "std", + ], + visibility = [], + deps = [":crossbeam-utils-0.8.20"], +) + cargo.rust_library( name = "crossbeam-utils-0.8.20", srcs = [ @@ -3537,6 +6163,154 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "crunchy-0.2.2", + srcs = ["vendor/crunchy-0.2.2/src/lib.rs"], + crate = "crunchy", + crate_root = "vendor/crunchy-0.2.2/src/lib.rs", + edition = "2015", + env = { + "OUT_DIR": "$(location :crunchy-0.2.2-build-script-run[out_dir])", + }, + features = [ + "default", + "limit_128", + ], + visibility = [], +) + +cargo.rust_binary( + name = "crunchy-0.2.2-build-script-build", + srcs = [ + "vendor/crunchy-0.2.2/build.rs", + "vendor/crunchy-0.2.2/src/lib.rs", + ], + crate = "build_script_build", + crate_root = "vendor/crunchy-0.2.2/build.rs", + edition = "2015", + features = [ + "default", + "limit_128", + ], + visibility = [], +) + +buildscript_run( + name = "crunchy-0.2.2-build-script-run", + package_name = "crunchy", + buildscript_rule = ":crunchy-0.2.2-build-script-build", + features = [ + "default", + "limit_128", + ], + version = "0.2.2", +) + +cargo.rust_library( + name = "crypto-bigint-0.5.5", + srcs = [ + "vendor/crypto-bigint-0.5.5/README.md", + "vendor/crypto-bigint-0.5.5/src/array.rs", + "vendor/crypto-bigint-0.5.5/src/boxed.rs", + "vendor/crypto-bigint-0.5.5/src/boxed/uint.rs", + "vendor/crypto-bigint-0.5.5/src/boxed/uint/add.rs", + "vendor/crypto-bigint-0.5.5/src/boxed/uint/cmp.rs", + "vendor/crypto-bigint-0.5.5/src/checked.rs", + "vendor/crypto-bigint-0.5.5/src/ct_choice.rs", + "vendor/crypto-bigint-0.5.5/src/lib.rs", + "vendor/crypto-bigint-0.5.5/src/limb.rs", + "vendor/crypto-bigint-0.5.5/src/limb/add.rs", + "vendor/crypto-bigint-0.5.5/src/limb/bit_and.rs", + "vendor/crypto-bigint-0.5.5/src/limb/bit_not.rs", + "vendor/crypto-bigint-0.5.5/src/limb/bit_or.rs", + "vendor/crypto-bigint-0.5.5/src/limb/bit_xor.rs", + "vendor/crypto-bigint-0.5.5/src/limb/bits.rs", + "vendor/crypto-bigint-0.5.5/src/limb/cmp.rs", + "vendor/crypto-bigint-0.5.5/src/limb/encoding.rs", + "vendor/crypto-bigint-0.5.5/src/limb/from.rs", + "vendor/crypto-bigint-0.5.5/src/limb/mul.rs", + "vendor/crypto-bigint-0.5.5/src/limb/neg.rs", + "vendor/crypto-bigint-0.5.5/src/limb/rand.rs", + "vendor/crypto-bigint-0.5.5/src/limb/shl.rs", + "vendor/crypto-bigint-0.5.5/src/limb/shr.rs", + "vendor/crypto-bigint-0.5.5/src/limb/sub.rs", + "vendor/crypto-bigint-0.5.5/src/macros.rs", + "vendor/crypto-bigint-0.5.5/src/non_zero.rs", + "vendor/crypto-bigint-0.5.5/src/traits.rs", + "vendor/crypto-bigint-0.5.5/src/uint.rs", + "vendor/crypto-bigint-0.5.5/src/uint/add.rs", + "vendor/crypto-bigint-0.5.5/src/uint/add_mod.rs", + "vendor/crypto-bigint-0.5.5/src/uint/array.rs", + "vendor/crypto-bigint-0.5.5/src/uint/bit_and.rs", + "vendor/crypto-bigint-0.5.5/src/uint/bit_not.rs", + "vendor/crypto-bigint-0.5.5/src/uint/bit_or.rs", + "vendor/crypto-bigint-0.5.5/src/uint/bit_xor.rs", + "vendor/crypto-bigint-0.5.5/src/uint/bits.rs", + "vendor/crypto-bigint-0.5.5/src/uint/cmp.rs", + "vendor/crypto-bigint-0.5.5/src/uint/concat.rs", + "vendor/crypto-bigint-0.5.5/src/uint/div.rs", + "vendor/crypto-bigint-0.5.5/src/uint/div_limb.rs", + "vendor/crypto-bigint-0.5.5/src/uint/encoding.rs", + "vendor/crypto-bigint-0.5.5/src/uint/encoding/der.rs", + "vendor/crypto-bigint-0.5.5/src/uint/encoding/rlp.rs", + "vendor/crypto-bigint-0.5.5/src/uint/extra_sizes.rs", + "vendor/crypto-bigint-0.5.5/src/uint/from.rs", + "vendor/crypto-bigint-0.5.5/src/uint/inv_mod.rs", + "vendor/crypto-bigint-0.5.5/src/uint/macros.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/add.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/const_add.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/const_inv.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/const_mul.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/const_neg.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/const_pow.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/const_sub.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/constant_mod/macros.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/div_by_2.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/inv.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/mul.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/pow.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/reduction.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod/runtime_add.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod/runtime_inv.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod/runtime_mul.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod/runtime_neg.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod/runtime_pow.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/runtime_mod/runtime_sub.rs", + "vendor/crypto-bigint-0.5.5/src/uint/modular/sub.rs", + "vendor/crypto-bigint-0.5.5/src/uint/mul.rs", + "vendor/crypto-bigint-0.5.5/src/uint/mul_mod.rs", + "vendor/crypto-bigint-0.5.5/src/uint/neg.rs", + "vendor/crypto-bigint-0.5.5/src/uint/neg_mod.rs", + "vendor/crypto-bigint-0.5.5/src/uint/rand.rs", + "vendor/crypto-bigint-0.5.5/src/uint/resize.rs", + "vendor/crypto-bigint-0.5.5/src/uint/shl.rs", + "vendor/crypto-bigint-0.5.5/src/uint/shr.rs", + "vendor/crypto-bigint-0.5.5/src/uint/split.rs", + "vendor/crypto-bigint-0.5.5/src/uint/sqrt.rs", + "vendor/crypto-bigint-0.5.5/src/uint/sub.rs", + "vendor/crypto-bigint-0.5.5/src/uint/sub_mod.rs", + "vendor/crypto-bigint-0.5.5/src/wrapping.rs", + ], + crate = "crypto_bigint", + crate_root = "vendor/crypto-bigint-0.5.5/src/lib.rs", + edition = "2021", + features = [ + "generic-array", + "rand_core", + "zeroize", + ], + visibility = [], + deps = [ + ":generic-array-0.14.7", + ":rand_core-0.6.4", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], +) + cargo.rust_library( name = "crypto-common-0.1.6", srcs = ["vendor/crypto-common-0.1.6/src/lib.rs"], @@ -3556,6 +6330,40 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "crypto-mac-0.11.0", + srcs = [ + "vendor/crypto-mac-0.11.0/src/dev.rs", + "vendor/crypto-mac-0.11.0/src/errors.rs", + "vendor/crypto-mac-0.11.0/src/lib.rs", + ], + crate = "crypto_mac", + crate_root = "vendor/crypto-mac-0.11.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":generic-array-0.14.7", + ":subtle-2.6.1", + ], +) + +cargo.rust_library( + name = "crypto-mac-0.8.0", + srcs = [ + "vendor/crypto-mac-0.8.0/src/dev.rs", + "vendor/crypto-mac-0.8.0/src/errors.rs", + "vendor/crypto-mac-0.8.0/src/lib.rs", + ], + crate = "crypto_mac", + crate_root = "vendor/crypto-mac-0.8.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":generic-array-0.14.7", + ":subtle-2.6.1", + ], +) + cargo.rust_library( name = "csv-1.3.1", srcs = [ @@ -3615,6 +6423,270 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "ctr-0.9.2", + srcs = [ + "vendor/ctr-0.9.2/src/backend.rs", + "vendor/ctr-0.9.2/src/ctr_core.rs", + "vendor/ctr-0.9.2/src/flavors.rs", + "vendor/ctr-0.9.2/src/flavors/ctr128.rs", + "vendor/ctr-0.9.2/src/flavors/ctr32.rs", + "vendor/ctr-0.9.2/src/flavors/ctr64.rs", + "vendor/ctr-0.9.2/src/lib.rs", + ], + crate = "ctr", + crate_root = "vendor/ctr-0.9.2/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":cipher-0.4.4"], +) + +alias( + name = "ctrlc", + actual = ":ctrlc-3.4.5", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "ctrlc-3.4.5", + srcs = [ + "vendor/ctrlc-3.4.5/src/error.rs", + "vendor/ctrlc-3.4.5/src/lib.rs", + "vendor/ctrlc-3.4.5/src/platform/mod.rs", + "vendor/ctrlc-3.4.5/src/platform/unix/mod.rs", + "vendor/ctrlc-3.4.5/src/platform/windows/mod.rs", + "vendor/ctrlc-3.4.5/src/signal.rs", + ], + crate = "ctrlc", + crate_root = "vendor/ctrlc-3.4.5/src/lib.rs", + edition = "2021", + platform = { + "linux-arm64": dict( + deps = [":nix-0.29.0"], + ), + "linux-x86_64": dict( + deps = [":nix-0.29.0"], + ), + "macos-arm64": dict( + deps = [":nix-0.29.0"], + ), + "macos-x86_64": dict( + deps = [":nix-0.29.0"], + ), + "windows-gnu": dict( + deps = [":windows-sys-0.59.0"], + ), + "windows-msvc": dict( + deps = [":windows-sys-0.59.0"], + ), + }, + visibility = [], +) + +cargo.rust_library( + name = "curve25519-dalek-4.1.3", + srcs = [ + "vendor/curve25519-dalek-4.1.3/README.md", + "vendor/curve25519-dalek-4.1.3/docs/avx2-notes.md", + "vendor/curve25519-dalek-4.1.3/docs/parallel-formulas.md", + "vendor/curve25519-dalek-4.1.3/src/backend/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/curve_models/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u32/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u32/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u64/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u64/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/pippenger.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/precomputed_straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/variable_base.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/vartime_double_base.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/scalar.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/scalar.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/edwards.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/edwards.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/packed_simd.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/pippenger.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/precomputed_straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/variable_base.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/vartime_double_base.rs", + "vendor/curve25519-dalek-4.1.3/src/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/diagnostics.rs", + "vendor/curve25519-dalek-4.1.3/src/edwards.rs", + "vendor/curve25519-dalek-4.1.3/src/field.rs", + "vendor/curve25519-dalek-4.1.3/src/lib.rs", + "vendor/curve25519-dalek-4.1.3/src/macros.rs", + "vendor/curve25519-dalek-4.1.3/src/montgomery.rs", + "vendor/curve25519-dalek-4.1.3/src/ristretto.rs", + "vendor/curve25519-dalek-4.1.3/src/scalar.rs", + "vendor/curve25519-dalek-4.1.3/src/traits.rs", + "vendor/curve25519-dalek-4.1.3/src/window.rs", + ], + crate = "curve25519_dalek", + crate_root = "vendor/curve25519-dalek-4.1.3/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "digest", + "precomputed-tables", + "zeroize", + ], + platform = { + "linux-x86_64": dict( + deps = [ + ":cpufeatures-0.2.13", + ":curve25519-dalek-derive-0.1.1", + ], + ), + "macos-x86_64": dict( + deps = [ + ":cpufeatures-0.2.13", + ":curve25519-dalek-derive-0.1.1", + ], + ), + "windows-gnu": dict( + deps = [ + ":cpufeatures-0.2.13", + ":curve25519-dalek-derive-0.1.1", + ], + ), + "windows-msvc": dict( + deps = [ + ":cpufeatures-0.2.13", + ":curve25519-dalek-derive-0.1.1", + ], + ), + }, + rustc_flags = ["@$(location :curve25519-dalek-4.1.3-build-script-run[rustc_flags])"], + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":digest-0.10.7", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], +) + +cargo.rust_binary( + name = "curve25519-dalek-4.1.3-build-script-build", + srcs = [ + "vendor/curve25519-dalek-4.1.3/README.md", + "vendor/curve25519-dalek-4.1.3/benches/dalek_benchmarks.rs", + "vendor/curve25519-dalek-4.1.3/build.rs", + "vendor/curve25519-dalek-4.1.3/docs/avx2-notes.md", + "vendor/curve25519-dalek-4.1.3/docs/parallel-formulas.md", + "vendor/curve25519-dalek-4.1.3/src/backend/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/curve_models/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u32/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u32/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u64/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/fiat_u64/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/pippenger.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/precomputed_straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/variable_base.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/scalar_mul/vartime_double_base.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u32/scalar.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/serial/u64/scalar.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/edwards.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/avx2/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/edwards.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/field.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/ifma/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/packed_simd.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/mod.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/pippenger.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/precomputed_straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/straus.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/variable_base.rs", + "vendor/curve25519-dalek-4.1.3/src/backend/vector/scalar_mul/vartime_double_base.rs", + "vendor/curve25519-dalek-4.1.3/src/constants.rs", + "vendor/curve25519-dalek-4.1.3/src/diagnostics.rs", + "vendor/curve25519-dalek-4.1.3/src/edwards.rs", + "vendor/curve25519-dalek-4.1.3/src/field.rs", + "vendor/curve25519-dalek-4.1.3/src/lib.rs", + "vendor/curve25519-dalek-4.1.3/src/macros.rs", + "vendor/curve25519-dalek-4.1.3/src/montgomery.rs", + "vendor/curve25519-dalek-4.1.3/src/ristretto.rs", + "vendor/curve25519-dalek-4.1.3/src/scalar.rs", + "vendor/curve25519-dalek-4.1.3/src/traits.rs", + "vendor/curve25519-dalek-4.1.3/src/window.rs", + ], + crate = "build_script_build", + crate_root = "vendor/curve25519-dalek-4.1.3/build.rs", + edition = "2021", + features = [ + "alloc", + "default", + "digest", + "precomputed-tables", + "zeroize", + ], + visibility = [], + deps = [":rustc_version-0.4.1"], +) + +buildscript_run( + name = "curve25519-dalek-4.1.3-build-script-run", + package_name = "curve25519-dalek", + buildscript_rule = ":curve25519-dalek-4.1.3-build-script-build", + features = [ + "alloc", + "default", + "digest", + "precomputed-tables", + "zeroize", + ], + version = "4.1.3", +) + +cargo.rust_library( + name = "curve25519-dalek-derive-0.1.1", + srcs = [ + "vendor/curve25519-dalek-derive-0.1.1/README.md", + "vendor/curve25519-dalek-derive-0.1.1/src/lib.rs", + ], + crate = "curve25519_dalek_derive", + crate_root = "vendor/curve25519-dalek-derive-0.1.1/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "daemonize-0.5.0", srcs = [ @@ -3628,6 +6700,129 @@ cargo.rust_library( deps = [":libc-0.2.169"], ) +cargo.rust_library( + name = "darling-0.20.10", + srcs = [ + "vendor/darling-0.20.10/src/lib.rs", + "vendor/darling-0.20.10/src/macros_public.rs", + ], + crate = "darling", + crate_root = "vendor/darling-0.20.10/src/lib.rs", + edition = "2021", + features = [ + "default", + "suggestions", + ], + visibility = [], + deps = [ + ":darling_core-0.20.10", + ":darling_macro-0.20.10", + ], +) + +cargo.rust_library( + name = "darling_core-0.20.10", + srcs = [ + "vendor/darling_core-0.20.10/src/ast/data.rs", + "vendor/darling_core-0.20.10/src/ast/generics.rs", + "vendor/darling_core-0.20.10/src/ast/mod.rs", + "vendor/darling_core-0.20.10/src/codegen/attr_extractor.rs", + "vendor/darling_core-0.20.10/src/codegen/attrs_field.rs", + "vendor/darling_core-0.20.10/src/codegen/default_expr.rs", + "vendor/darling_core-0.20.10/src/codegen/error.rs", + "vendor/darling_core-0.20.10/src/codegen/field.rs", + "vendor/darling_core-0.20.10/src/codegen/from_attributes_impl.rs", + "vendor/darling_core-0.20.10/src/codegen/from_derive_impl.rs", + "vendor/darling_core-0.20.10/src/codegen/from_field.rs", + "vendor/darling_core-0.20.10/src/codegen/from_meta_impl.rs", + "vendor/darling_core-0.20.10/src/codegen/from_type_param.rs", + "vendor/darling_core-0.20.10/src/codegen/from_variant_impl.rs", + "vendor/darling_core-0.20.10/src/codegen/mod.rs", + "vendor/darling_core-0.20.10/src/codegen/outer_from_impl.rs", + "vendor/darling_core-0.20.10/src/codegen/postfix_transform.rs", + "vendor/darling_core-0.20.10/src/codegen/trait_impl.rs", + "vendor/darling_core-0.20.10/src/codegen/variant.rs", + "vendor/darling_core-0.20.10/src/codegen/variant_data.rs", + "vendor/darling_core-0.20.10/src/derive.rs", + "vendor/darling_core-0.20.10/src/error/child.rs", + "vendor/darling_core-0.20.10/src/error/kind.rs", + "vendor/darling_core-0.20.10/src/error/mod.rs", + "vendor/darling_core-0.20.10/src/from_attributes.rs", + "vendor/darling_core-0.20.10/src/from_derive_input.rs", + "vendor/darling_core-0.20.10/src/from_field.rs", + "vendor/darling_core-0.20.10/src/from_generic_param.rs", + "vendor/darling_core-0.20.10/src/from_generics.rs", + "vendor/darling_core-0.20.10/src/from_meta.rs", + "vendor/darling_core-0.20.10/src/from_type_param.rs", + "vendor/darling_core-0.20.10/src/from_variant.rs", + "vendor/darling_core-0.20.10/src/lib.rs", + "vendor/darling_core-0.20.10/src/macros_private.rs", + "vendor/darling_core-0.20.10/src/macros_public.rs", + "vendor/darling_core-0.20.10/src/options/core.rs", + "vendor/darling_core-0.20.10/src/options/forward_attrs.rs", + "vendor/darling_core-0.20.10/src/options/from_attributes.rs", + "vendor/darling_core-0.20.10/src/options/from_derive.rs", + "vendor/darling_core-0.20.10/src/options/from_field.rs", + "vendor/darling_core-0.20.10/src/options/from_meta.rs", + "vendor/darling_core-0.20.10/src/options/from_type_param.rs", + "vendor/darling_core-0.20.10/src/options/from_variant.rs", + "vendor/darling_core-0.20.10/src/options/input_field.rs", + "vendor/darling_core-0.20.10/src/options/input_variant.rs", + "vendor/darling_core-0.20.10/src/options/mod.rs", + "vendor/darling_core-0.20.10/src/options/outer_from.rs", + "vendor/darling_core-0.20.10/src/options/shape.rs", + "vendor/darling_core-0.20.10/src/usage/generics_ext.rs", + "vendor/darling_core-0.20.10/src/usage/ident_set.rs", + "vendor/darling_core-0.20.10/src/usage/lifetimes.rs", + "vendor/darling_core-0.20.10/src/usage/mod.rs", + "vendor/darling_core-0.20.10/src/usage/options.rs", + "vendor/darling_core-0.20.10/src/usage/type_params.rs", + "vendor/darling_core-0.20.10/src/util/flag.rs", + "vendor/darling_core-0.20.10/src/util/ident_string.rs", + "vendor/darling_core-0.20.10/src/util/ignored.rs", + "vendor/darling_core-0.20.10/src/util/mod.rs", + "vendor/darling_core-0.20.10/src/util/over_ride.rs", + "vendor/darling_core-0.20.10/src/util/parse_attribute.rs", + "vendor/darling_core-0.20.10/src/util/parse_expr.rs", + "vendor/darling_core-0.20.10/src/util/path_list.rs", + "vendor/darling_core-0.20.10/src/util/path_to_string.rs", + "vendor/darling_core-0.20.10/src/util/shape.rs", + "vendor/darling_core-0.20.10/src/util/spanned_value.rs", + "vendor/darling_core-0.20.10/src/util/with_original.rs", + ], + crate = "darling_core", + crate_root = "vendor/darling_core-0.20.10/src/lib.rs", + edition = "2021", + features = [ + "strsim", + "suggestions", + ], + visibility = [], + deps = [ + ":fnv-1.0.7", + ":ident_case-1.0.1", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":strsim-0.11.1", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "darling_macro-0.20.10", + srcs = ["vendor/darling_macro-0.20.10/src/lib.rs"], + crate = "darling_macro", + crate_root = "vendor/darling_macro-0.20.10/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":darling_core-0.20.10", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "dashmap-5.5.3", srcs = [ @@ -3666,16 +6861,75 @@ cargo.rust_library( ], ) +alias( + name = "dashmap", + actual = ":dashmap-6.1.0", + visibility = ["PUBLIC"], +) + cargo.rust_library( - name = "delay_timer-0.11.6", - srcs = [ - "vendor/delay_timer-0.11.6/src/entity.rs", - "vendor/delay_timer-0.11.6/src/error.rs", - "vendor/delay_timer-0.11.6/src/lib.rs", - "vendor/delay_timer-0.11.6/src/macros/feature_cfg.rs", - "vendor/delay_timer-0.11.6/src/macros/mod.rs", - "vendor/delay_timer-0.11.6/src/prelude.rs", - "vendor/delay_timer-0.11.6/src/timer/event_handle.rs", + name = "dashmap-6.1.0", + srcs = [ + "vendor/dashmap-6.1.0/src/arbitrary.rs", + "vendor/dashmap-6.1.0/src/iter.rs", + "vendor/dashmap-6.1.0/src/iter_set.rs", + "vendor/dashmap-6.1.0/src/lib.rs", + "vendor/dashmap-6.1.0/src/lock.rs", + "vendor/dashmap-6.1.0/src/mapref/entry.rs", + "vendor/dashmap-6.1.0/src/mapref/mod.rs", + "vendor/dashmap-6.1.0/src/mapref/multiple.rs", + "vendor/dashmap-6.1.0/src/mapref/one.rs", + "vendor/dashmap-6.1.0/src/rayon/map.rs", + "vendor/dashmap-6.1.0/src/rayon/read_only.rs", + "vendor/dashmap-6.1.0/src/rayon/set.rs", + "vendor/dashmap-6.1.0/src/read_only.rs", + "vendor/dashmap-6.1.0/src/serde.rs", + "vendor/dashmap-6.1.0/src/set.rs", + "vendor/dashmap-6.1.0/src/setref/mod.rs", + "vendor/dashmap-6.1.0/src/setref/multiple.rs", + "vendor/dashmap-6.1.0/src/setref/one.rs", + "vendor/dashmap-6.1.0/src/t.rs", + "vendor/dashmap-6.1.0/src/try_result.rs", + "vendor/dashmap-6.1.0/src/util.rs", + ], + crate = "dashmap", + crate_root = "vendor/dashmap-6.1.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":crossbeam-utils-0.8.20", + ":hashbrown-0.14.5", + ":lock_api-0.4.12", + ":once_cell-1.20.3", + ":parking_lot_core-0.9.10", + ], +) + +cargo.rust_library( + name = "data-encoding-2.6.0", + srcs = ["vendor/data-encoding-2.6.0/src/lib.rs"], + crate = "data_encoding", + crate_root = "vendor/data-encoding-2.6.0/src/lib.rs", + edition = "2018", + features = [ + "alloc", + "default", + "std", + ], + visibility = [], +) + +cargo.rust_library( + name = "delay_timer-0.11.6", + srcs = [ + "vendor/delay_timer-0.11.6/src/entity.rs", + "vendor/delay_timer-0.11.6/src/error.rs", + "vendor/delay_timer-0.11.6/src/lib.rs", + "vendor/delay_timer-0.11.6/src/macros/feature_cfg.rs", + "vendor/delay_timer-0.11.6/src/macros/mod.rs", + "vendor/delay_timer-0.11.6/src/prelude.rs", + "vendor/delay_timer-0.11.6/src/timer/event_handle.rs", "vendor/delay_timer-0.11.6/src/timer/mod.rs", "vendor/delay_timer-0.11.6/src/timer/runtime_trace/mod.rs", "vendor/delay_timer-0.11.6/src/timer/runtime_trace/state.rs", @@ -3714,6 +6968,100 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "delegate-0.13.1", + srcs = [ + "vendor/delegate-0.13.1/src/attributes.rs", + "vendor/delegate-0.13.1/src/lib.rs", + ], + crate = "delegate", + crate_root = "vendor/delegate-0.13.1/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "der-0.7.9", + srcs = [ + "vendor/der-0.7.9/README.md", + "vendor/der-0.7.9/src/arrayvec.rs", + "vendor/der-0.7.9/src/asn1.rs", + "vendor/der-0.7.9/src/asn1/any.rs", + "vendor/der-0.7.9/src/asn1/bit_string.rs", + "vendor/der-0.7.9/src/asn1/bmp_string.rs", + "vendor/der-0.7.9/src/asn1/boolean.rs", + "vendor/der-0.7.9/src/asn1/choice.rs", + "vendor/der-0.7.9/src/asn1/context_specific.rs", + "vendor/der-0.7.9/src/asn1/generalized_time.rs", + "vendor/der-0.7.9/src/asn1/ia5_string.rs", + "vendor/der-0.7.9/src/asn1/integer.rs", + "vendor/der-0.7.9/src/asn1/integer/int.rs", + "vendor/der-0.7.9/src/asn1/integer/uint.rs", + "vendor/der-0.7.9/src/asn1/internal_macros.rs", + "vendor/der-0.7.9/src/asn1/null.rs", + "vendor/der-0.7.9/src/asn1/octet_string.rs", + "vendor/der-0.7.9/src/asn1/oid.rs", + "vendor/der-0.7.9/src/asn1/optional.rs", + "vendor/der-0.7.9/src/asn1/printable_string.rs", + "vendor/der-0.7.9/src/asn1/real.rs", + "vendor/der-0.7.9/src/asn1/sequence.rs", + "vendor/der-0.7.9/src/asn1/sequence_of.rs", + "vendor/der-0.7.9/src/asn1/set_of.rs", + "vendor/der-0.7.9/src/asn1/teletex_string.rs", + "vendor/der-0.7.9/src/asn1/utc_time.rs", + "vendor/der-0.7.9/src/asn1/utf8_string.rs", + "vendor/der-0.7.9/src/asn1/videotex_string.rs", + "vendor/der-0.7.9/src/bytes_owned.rs", + "vendor/der-0.7.9/src/bytes_ref.rs", + "vendor/der-0.7.9/src/datetime.rs", + "vendor/der-0.7.9/src/decode.rs", + "vendor/der-0.7.9/src/document.rs", + "vendor/der-0.7.9/src/encode.rs", + "vendor/der-0.7.9/src/encode_ref.rs", + "vendor/der-0.7.9/src/error.rs", + "vendor/der-0.7.9/src/header.rs", + "vendor/der-0.7.9/src/length.rs", + "vendor/der-0.7.9/src/lib.rs", + "vendor/der-0.7.9/src/ord.rs", + "vendor/der-0.7.9/src/reader.rs", + "vendor/der-0.7.9/src/reader/nested.rs", + "vendor/der-0.7.9/src/reader/pem.rs", + "vendor/der-0.7.9/src/reader/slice.rs", + "vendor/der-0.7.9/src/referenced.rs", + "vendor/der-0.7.9/src/str_owned.rs", + "vendor/der-0.7.9/src/str_ref.rs", + "vendor/der-0.7.9/src/tag.rs", + "vendor/der-0.7.9/src/tag/class.rs", + "vendor/der-0.7.9/src/tag/mode.rs", + "vendor/der-0.7.9/src/tag/number.rs", + "vendor/der-0.7.9/src/writer.rs", + "vendor/der-0.7.9/src/writer/pem.rs", + "vendor/der-0.7.9/src/writer/slice.rs", + ], + crate = "der", + crate_root = "vendor/der-0.7.9/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "oid", + "pem", + "std", + "zeroize", + ], + visibility = [], + deps = [ + ":const-oid-0.9.6", + ":pem-rfc7468-0.7.0", + ":zeroize-1.8.1", + ], +) + cargo.rust_library( name = "deranged-0.3.11", srcs = [ @@ -3853,6 +7201,28 @@ cargo.rust_library( visibility = [], ) +alias( + name = "diffs", + actual = ":diffs-0.5.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "diffs-0.5.1", + srcs = [ + "vendor/diffs-0.5.1/src/bin.rs", + "vendor/diffs-0.5.1/src/lib.rs", + "vendor/diffs-0.5.1/src/myers.rs", + "vendor/diffs-0.5.1/src/patience.rs", + "vendor/diffs-0.5.1/src/replace.rs", + "vendor/diffs-0.5.1/src/test.rs", + ], + crate = "diffs", + crate_root = "vendor/diffs-0.5.1/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "digest-0.10.7", srcs = [ @@ -3894,6 +7264,29 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "digest-0.9.0", + srcs = [ + "vendor/digest-0.9.0/src/dev.rs", + "vendor/digest-0.9.0/src/digest.rs", + "vendor/digest-0.9.0/src/dyn_digest.rs", + "vendor/digest-0.9.0/src/errors.rs", + "vendor/digest-0.9.0/src/fixed.rs", + "vendor/digest-0.9.0/src/lib.rs", + "vendor/digest-0.9.0/src/variable.rs", + "vendor/digest-0.9.0/src/xof.rs", + ], + crate = "digest", + crate_root = "vendor/digest-0.9.0/src/lib.rs", + edition = "2018", + features = [ + "alloc", + "std", + ], + visibility = [], + deps = [":generic-array-0.14.7"], +) + cargo.rust_library( name = "dirs-next-2.0.0", srcs = [ @@ -3956,6 +7349,10 @@ cargo.rust_library( crate = "displaydoc", crate_root = "vendor/displaydoc-0.2.5/src/lib.rs", edition = "2021", + features = [ + "default", + "std", + ], proc_macro = True, visibility = [], deps = [ @@ -3965,6 +7362,20 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "dlv-list-0.5.2", + srcs = [ + "vendor/dlv-list-0.5.2/src/lib.rs", + "vendor/dlv-list-0.5.2/src/serde.rs", + ], + crate = "dlv_list", + crate_root = "vendor/dlv-list-0.5.2/src/lib.rs", + edition = "2021", + features = ["std"], + visibility = [], + deps = [":const-random-0.1.18"], +) + cargo.rust_library( name = "doc-comment-0.3.3", srcs = ["vendor/doc-comment-0.3.3/src/lib.rs"], @@ -4018,6 +7429,248 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "ecdsa-0.16.9", + srcs = [ + "vendor/ecdsa-0.16.9/README.md", + "vendor/ecdsa-0.16.9/src/der.rs", + "vendor/ecdsa-0.16.9/src/dev.rs", + "vendor/ecdsa-0.16.9/src/hazmat.rs", + "vendor/ecdsa-0.16.9/src/lib.rs", + "vendor/ecdsa-0.16.9/src/normalized.rs", + "vendor/ecdsa-0.16.9/src/recovery.rs", + "vendor/ecdsa-0.16.9/src/signing.rs", + "vendor/ecdsa-0.16.9/src/verifying.rs", + ], + crate = "ecdsa", + crate_root = "vendor/ecdsa-0.16.9/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "arithmetic", + "default", + "der", + "digest", + "hazmat", + "pem", + "pkcs8", + "rfc6979", + "signing", + "spki", + "std", + "verifying", + ], + visibility = [], + deps = [ + ":der-0.7.9", + ":digest-0.10.7", + ":elliptic-curve-0.13.8", + ":rfc6979-0.4.0", + ":signature-2.2.0", + ":spki-0.7.3", + ], +) + +cargo.rust_library( + name = "ed25519-2.2.3", + srcs = [ + "vendor/ed25519-2.2.3/README.md", + "vendor/ed25519-2.2.3/src/hex.rs", + "vendor/ed25519-2.2.3/src/lib.rs", + "vendor/ed25519-2.2.3/src/pkcs8.rs", + "vendor/ed25519-2.2.3/src/serde.rs", + ], + crate = "ed25519", + crate_root = "vendor/ed25519-2.2.3/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "pkcs8", + "std", + ], + visibility = [], + deps = [ + ":pkcs8-0.10.2", + ":signature-2.2.0", + ], +) + +alias( + name = "ed25519-dalek", + actual = ":ed25519-dalek-2.1.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "ed25519-dalek-2.1.1", + srcs = [ + "vendor/ed25519-dalek-2.1.1/src/batch.rs", + "vendor/ed25519-dalek-2.1.1/src/constants.rs", + "vendor/ed25519-dalek-2.1.1/src/context.rs", + "vendor/ed25519-dalek-2.1.1/src/errors.rs", + "vendor/ed25519-dalek-2.1.1/src/hazmat.rs", + "vendor/ed25519-dalek-2.1.1/src/lib.rs", + "vendor/ed25519-dalek-2.1.1/src/signature.rs", + "vendor/ed25519-dalek-2.1.1/src/signing.rs", + "vendor/ed25519-dalek-2.1.1/src/verifying.rs", + ], + crate = "ed25519_dalek", + crate_root = "vendor/ed25519-dalek-2.1.1/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "fast", + "pkcs8", + "rand_core", + "std", + "zeroize", + ], + visibility = [], + deps = [ + ":curve25519-dalek-4.1.3", + ":ed25519-2.2.3", + ":rand_core-0.6.4", + ":serde-1.0.217", + ":sha2-0.10.8", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], +) + +cargo.rust_library( + name = "educe-0.6.0", + srcs = [ + "vendor/educe-0.6.0/src/common/bound.rs", + "vendor/educe-0.6.0/src/common/expr.rs", + "vendor/educe-0.6.0/src/common/ident_bool.rs", + "vendor/educe-0.6.0/src/common/ident_index.rs", + "vendor/educe-0.6.0/src/common/int.rs", + "vendor/educe-0.6.0/src/common/mod.rs", + "vendor/educe-0.6.0/src/common/path.rs", + "vendor/educe-0.6.0/src/common/tools/discriminant_type.rs", + "vendor/educe-0.6.0/src/common/tools/hash_type.rs", + "vendor/educe-0.6.0/src/common/tools/mod.rs", + "vendor/educe-0.6.0/src/common/type.rs", + "vendor/educe-0.6.0/src/common/unsafe_punctuated_meta.rs", + "vendor/educe-0.6.0/src/common/where_predicates_bool.rs", + "vendor/educe-0.6.0/src/lib.rs", + "vendor/educe-0.6.0/src/panic.rs", + "vendor/educe-0.6.0/src/supported_traits.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/clone_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/clone_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/clone_union.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/clone/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/copy/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/copy/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/copy/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/copy/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/common.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/debug_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/debug_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/debug_union.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/debug/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/default_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/default_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/default_union.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/default/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/deref_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/deref_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/deref_mut_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/deref_mut_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/deref_mut/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/eq/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/eq/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/eq/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/eq/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/hash_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/hash_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/hash_union.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/hash/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/common.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/into_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/into_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/into/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/ord_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/ord_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/ord/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/partial_eq_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/partial_eq_struct.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_eq/partial_eq_union.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/models/field_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/models/mod.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/models/type_attribute.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/panic.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/partial_ord_enum.rs", + "vendor/educe-0.6.0/src/trait_handlers/partial_ord/partial_ord_struct.rs", + ], + crate = "educe", + crate_root = "vendor/educe-0.6.0/src/lib.rs", + edition = "2021", + features = [ + "Clone", + "Copy", + "Debug", + "Default", + "Deref", + "DerefMut", + "Eq", + "Hash", + "Into", + "Ord", + "PartialEq", + "PartialOrd", + "default", + ], + proc_macro = True, + visibility = [], + deps = [ + ":enum-ordinalize-4.3.0", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "either-1.13.0", srcs = [ @@ -4039,6 +7692,93 @@ cargo.rust_library( deps = [":serde-1.0.217"], ) +cargo.rust_library( + name = "elliptic-curve-0.13.8", + srcs = [ + "vendor/elliptic-curve-0.13.8/README.md", + "vendor/elliptic-curve-0.13.8/src/arithmetic.rs", + "vendor/elliptic-curve-0.13.8/src/dev.rs", + "vendor/elliptic-curve-0.13.8/src/ecdh.rs", + "vendor/elliptic-curve-0.13.8/src/error.rs", + "vendor/elliptic-curve-0.13.8/src/field.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/group_digest.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/hash2field.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/hash2field/expand_msg.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/hash2field/expand_msg/xmd.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/hash2field/expand_msg/xof.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/isogeny.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/map2curve.rs", + "vendor/elliptic-curve-0.13.8/src/hash2curve/osswu.rs", + "vendor/elliptic-curve-0.13.8/src/jwk.rs", + "vendor/elliptic-curve-0.13.8/src/lib.rs", + "vendor/elliptic-curve-0.13.8/src/ops.rs", + "vendor/elliptic-curve-0.13.8/src/point.rs", + "vendor/elliptic-curve-0.13.8/src/point/non_identity.rs", + "vendor/elliptic-curve-0.13.8/src/public_key.rs", + "vendor/elliptic-curve-0.13.8/src/scalar.rs", + "vendor/elliptic-curve-0.13.8/src/scalar/blinded.rs", + "vendor/elliptic-curve-0.13.8/src/scalar/nonzero.rs", + "vendor/elliptic-curve-0.13.8/src/scalar/primitive.rs", + "vendor/elliptic-curve-0.13.8/src/sec1.rs", + "vendor/elliptic-curve-0.13.8/src/secret_key.rs", + "vendor/elliptic-curve-0.13.8/src/secret_key/pkcs8.rs", + "vendor/elliptic-curve-0.13.8/src/voprf.rs", + "vendor/elliptic-curve-0.13.8/src/weierstrass.rs", + ], + crate = "elliptic_curve", + crate_root = "vendor/elliptic-curve-0.13.8/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "arithmetic", + "default", + "digest", + "ecdh", + "ff", + "group", + "hazmat", + "pem", + "pkcs8", + "sec1", + "std", + ], + visibility = [], + deps = [ + ":base16ct-0.2.0", + ":crypto-bigint-0.5.5", + ":digest-0.10.7", + ":ff-0.13.0", + ":generic-array-0.14.7", + ":group-0.13.0", + ":hkdf-0.12.4", + ":pem-rfc7468-0.7.0", + ":pkcs8-0.10.2", + ":rand_core-0.6.4", + ":sec1-0.7.3", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], +) + +cargo.rust_library( + name = "ena-0.14.3", + srcs = [ + "vendor/ena-0.14.3/src/bitvec.rs", + "vendor/ena-0.14.3/src/lib.rs", + "vendor/ena-0.14.3/src/snapshot_vec.rs", + "vendor/ena-0.14.3/src/undo_log.rs", + "vendor/ena-0.14.3/src/unify/backing_vec.rs", + "vendor/ena-0.14.3/src/unify/mod.rs", + "vendor/ena-0.14.3/src/unify/tests.rs", + ], + crate = "ena", + crate_root = "vendor/ena-0.14.3/src/lib.rs", + edition = "2015", + visibility = [], + deps = [":log-0.4.22"], +) + cargo.rust_library( name = "encode_unicode-1.0.0", srcs = [ @@ -4061,6 +7801,12 @@ cargo.rust_library( visibility = [], ) +alias( + name = "encoding_rs", + actual = ":encoding_rs-0.8.34", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "encoding_rs-0.8.34", srcs = [ @@ -4142,6 +7888,68 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "enum-ordinalize-4.3.0", + srcs = [ + "vendor/enum-ordinalize-4.3.0/src/lib.rs", + "vendor/enum-ordinalize-4.3.0/src/traits.rs", + ], + crate = "enum_ordinalize", + crate_root = "vendor/enum-ordinalize-4.3.0/src/lib.rs", + edition = "2021", + features = ["derive"], + visibility = [], + deps = [":enum-ordinalize-derive-4.3.1"], +) + +cargo.rust_library( + name = "enum-ordinalize-derive-4.3.1", + srcs = [ + "vendor/enum-ordinalize-derive-4.3.1/src/int128.rs", + "vendor/enum-ordinalize-derive-4.3.1/src/int_wrapper.rs", + "vendor/enum-ordinalize-derive-4.3.1/src/lib.rs", + "vendor/enum-ordinalize-derive-4.3.1/src/panic.rs", + "vendor/enum-ordinalize-derive-4.3.1/src/variant_type.rs", + ], + crate = "enum_ordinalize_derive", + crate_root = "vendor/enum-ordinalize-derive-4.3.1/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "enum_dispatch-0.3.13", + srcs = [ + "vendor/enum_dispatch-0.3.13/src/attributed_parser.rs", + "vendor/enum_dispatch-0.3.13/src/cache.rs", + "vendor/enum_dispatch-0.3.13/src/enum_dispatch_arg_list.rs", + "vendor/enum_dispatch-0.3.13/src/enum_dispatch_item.rs", + "vendor/enum_dispatch-0.3.13/src/enum_dispatch_variant.rs", + "vendor/enum_dispatch-0.3.13/src/expansion.rs", + "vendor/enum_dispatch-0.3.13/src/filter_attrs.rs", + "vendor/enum_dispatch-0.3.13/src/lib.rs", + "vendor/enum_dispatch-0.3.13/src/supported_generics.rs", + "vendor/enum_dispatch-0.3.13/src/syn_utils.rs", + ], + crate = "enum_dispatch", + crate_root = "vendor/enum_dispatch-0.3.13/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":once_cell-1.20.3", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "env_logger-0.10.2", srcs = [ @@ -4179,6 +7987,22 @@ cargo.rust_library( ], ) +alias( + name = "envsubst", + actual = ":envsubst-0.2.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "envsubst-0.2.1", + srcs = ["vendor/envsubst-0.2.1/src/lib.rs"], + crate = "envsubst", + crate_root = "vendor/envsubst-0.2.1/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":thiserror-1.0.65"], +) + cargo.rust_library( name = "equivalent-1.0.1", srcs = ["vendor/equivalent-1.0.1/src/lib.rs"], @@ -4224,6 +8048,38 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "etcetera-0.8.0", + srcs = [ + "vendor/etcetera-0.8.0/src/app_strategy.rs", + "vendor/etcetera-0.8.0/src/app_strategy/apple.rs", + "vendor/etcetera-0.8.0/src/app_strategy/unix.rs", + "vendor/etcetera-0.8.0/src/app_strategy/windows.rs", + "vendor/etcetera-0.8.0/src/app_strategy/xdg.rs", + "vendor/etcetera-0.8.0/src/base_strategy.rs", + "vendor/etcetera-0.8.0/src/base_strategy/apple.rs", + "vendor/etcetera-0.8.0/src/base_strategy/windows.rs", + "vendor/etcetera-0.8.0/src/base_strategy/xdg.rs", + "vendor/etcetera-0.8.0/src/lib.rs", + ], + crate = "etcetera", + crate_root = "vendor/etcetera-0.8.0/src/lib.rs", + edition = "2018", + platform = { + "windows-gnu": dict( + deps = [":windows-sys-0.48.0"], + ), + "windows-msvc": dict( + deps = [":windows-sys-0.48.0"], + ), + }, + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":home-0.5.9", + ], +) + cargo.rust_library( name = "event-listener-2.5.3", srcs = ["vendor/event-listener-2.5.3/src/lib.rs"], @@ -4362,9 +8218,45 @@ cargo.rust_library( ) cargo.rust_library( - name = "flate2-1.0.35", + name = "ff-0.13.0", srcs = [ - "vendor/flate2-1.0.35/src/bufreader.rs", + "vendor/ff-0.13.0/src/batch.rs", + "vendor/ff-0.13.0/src/helpers.rs", + "vendor/ff-0.13.0/src/lib.rs", + ], + crate = "ff", + crate_root = "vendor/ff-0.13.0/src/lib.rs", + edition = "2021", + features = ["alloc"], + visibility = [], + deps = [ + ":rand_core-0.6.4", + ":subtle-2.6.1", + ], +) + +cargo.rust_library( + name = "fixedbitset-0.4.2", + srcs = [ + "vendor/fixedbitset-0.4.2/src/lib.rs", + "vendor/fixedbitset-0.4.2/src/range.rs", + ], + crate = "fixedbitset", + crate_root = "vendor/fixedbitset-0.4.2/src/lib.rs", + edition = "2015", + visibility = [], +) + +alias( + name = "flate2", + actual = ":flate2-1.0.35", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "flate2-1.0.35", + srcs = [ + "vendor/flate2-1.0.35/src/bufreader.rs", "vendor/flate2-1.0.35/src/crc.rs", "vendor/flate2-1.0.35/src/deflate/bufread.rs", "vendor/flate2-1.0.35/src/deflate/mod.rs", @@ -4405,6 +8297,32 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "flume-0.11.0", + srcs = [ + "vendor/flume-0.11.0/src/async.rs", + "vendor/flume-0.11.0/src/lib.rs", + "vendor/flume-0.11.0/src/select.rs", + "vendor/flume-0.11.0/src/signal.rs", + ], + crate = "flume", + crate_root = "vendor/flume-0.11.0/src/lib.rs", + edition = "2018", + features = [ + "async", + "futures-core", + "futures-sink", + ], + named_deps = { + "spin1": ":spin-0.9.8", + }, + visibility = [], + deps = [ + ":futures-core-0.3.31", + ":futures-sink-0.3.31", + ], +) + cargo.rust_library( name = "fnv-1.0.7", srcs = ["vendor/fnv-1.0.7/lib.rs"], @@ -4466,6 +8384,21 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "funty-2.0.0", + srcs = ["vendor/funty-2.0.0/src/lib.rs"], + crate = "funty", + crate_root = "vendor/funty-2.0.0/src/lib.rs", + edition = "2018", + visibility = [], +) + +alias( + name = "futures", + actual = ":futures-0.3.31", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "futures-0.3.31", srcs = ["vendor/futures-0.3.31/src/lib.rs"], @@ -4565,6 +8498,49 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "futures-intrusive-0.5.0", + srcs = [ + "vendor/futures-intrusive-0.5.0/src/buffer/mod.rs", + "vendor/futures-intrusive-0.5.0/src/buffer/real_array.rs", + "vendor/futures-intrusive-0.5.0/src/buffer/ring_buffer.rs", + "vendor/futures-intrusive-0.5.0/src/channel/channel_future.rs", + "vendor/futures-intrusive-0.5.0/src/channel/error.rs", + "vendor/futures-intrusive-0.5.0/src/channel/mod.rs", + "vendor/futures-intrusive-0.5.0/src/channel/mpmc.rs", + "vendor/futures-intrusive-0.5.0/src/channel/oneshot.rs", + "vendor/futures-intrusive-0.5.0/src/channel/oneshot_broadcast.rs", + "vendor/futures-intrusive-0.5.0/src/channel/state_broadcast.rs", + "vendor/futures-intrusive-0.5.0/src/intrusive_double_linked_list.rs", + "vendor/futures-intrusive-0.5.0/src/intrusive_pairing_heap.rs", + "vendor/futures-intrusive-0.5.0/src/lib.rs", + "vendor/futures-intrusive-0.5.0/src/noop_lock.rs", + "vendor/futures-intrusive-0.5.0/src/sync/manual_reset_event.rs", + "vendor/futures-intrusive-0.5.0/src/sync/mod.rs", + "vendor/futures-intrusive-0.5.0/src/sync/mutex.rs", + "vendor/futures-intrusive-0.5.0/src/sync/semaphore.rs", + "vendor/futures-intrusive-0.5.0/src/timer/clock.rs", + "vendor/futures-intrusive-0.5.0/src/timer/mod.rs", + "vendor/futures-intrusive-0.5.0/src/timer/timer.rs", + "vendor/futures-intrusive-0.5.0/src/utils/mod.rs", + ], + crate = "futures_intrusive", + crate_root = "vendor/futures-intrusive-0.5.0/src/lib.rs", + edition = "2018", + features = [ + "alloc", + "default", + "parking_lot", + "std", + ], + visibility = [], + deps = [ + ":futures-core-0.3.31", + ":lock_api-0.4.12", + ":parking_lot-0.12.3", + ], +) + cargo.rust_library( name = "futures-io-0.3.31", srcs = ["vendor/futures-io-0.3.31/src/lib.rs"], @@ -4699,6 +8675,12 @@ cargo.rust_library( visibility = [], ) +alias( + name = "futures-util", + actual = ":futures-util-0.3.31", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "futures-util-0.3.31", srcs = [ @@ -4985,6 +8967,7 @@ buildscript_run( cargo.rust_library( name = "getrandom-0.2.15", srcs = [ + "vendor/getrandom-0.2.15/README.md", "vendor/getrandom-0.2.15/src/apple-other.rs", "vendor/getrandom-0.2.15/src/custom.rs", "vendor/getrandom-0.2.15/src/error.rs", @@ -5040,6 +9023,7 @@ cargo.rust_library( cargo.rust_library( name = "getrandom-0.3.1", srcs = [ + "vendor/getrandom-0.3.1/README.md", "vendor/getrandom-0.3.1/src/backends.rs", "vendor/getrandom-0.3.1/src/backends/apple_other.rs", "vendor/getrandom-0.3.1/src/backends/custom.rs", @@ -5097,6 +9081,110 @@ cargo.rust_library( deps = [":cfg-if-1.0.0"], ) +cargo.rust_library( + name = "ghash-0.5.1", + srcs = ["vendor/ghash-0.5.1/src/lib.rs"], + crate = "ghash", + crate_root = "vendor/ghash-0.5.1/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":opaque-debug-0.3.1", + ":polyval-0.6.2", + ], +) + +cargo.rust_library( + name = "git2-0.19.0", + srcs = [ + "vendor/git2-0.19.0/src/apply.rs", + "vendor/git2-0.19.0/src/attr.rs", + "vendor/git2-0.19.0/src/blame.rs", + "vendor/git2-0.19.0/src/blob.rs", + "vendor/git2-0.19.0/src/branch.rs", + "vendor/git2-0.19.0/src/buf.rs", + "vendor/git2-0.19.0/src/build.rs", + "vendor/git2-0.19.0/src/call.rs", + "vendor/git2-0.19.0/src/cert.rs", + "vendor/git2-0.19.0/src/cherrypick.rs", + "vendor/git2-0.19.0/src/commit.rs", + "vendor/git2-0.19.0/src/config.rs", + "vendor/git2-0.19.0/src/cred.rs", + "vendor/git2-0.19.0/src/describe.rs", + "vendor/git2-0.19.0/src/diff.rs", + "vendor/git2-0.19.0/src/email.rs", + "vendor/git2-0.19.0/src/error.rs", + "vendor/git2-0.19.0/src/index.rs", + "vendor/git2-0.19.0/src/indexer.rs", + "vendor/git2-0.19.0/src/lib.rs", + "vendor/git2-0.19.0/src/mailmap.rs", + "vendor/git2-0.19.0/src/mempack.rs", + "vendor/git2-0.19.0/src/merge.rs", + "vendor/git2-0.19.0/src/message.rs", + "vendor/git2-0.19.0/src/note.rs", + "vendor/git2-0.19.0/src/object.rs", + "vendor/git2-0.19.0/src/odb.rs", + "vendor/git2-0.19.0/src/oid.rs", + "vendor/git2-0.19.0/src/oid_array.rs", + "vendor/git2-0.19.0/src/opts.rs", + "vendor/git2-0.19.0/src/packbuilder.rs", + "vendor/git2-0.19.0/src/panic.rs", + "vendor/git2-0.19.0/src/patch.rs", + "vendor/git2-0.19.0/src/pathspec.rs", + "vendor/git2-0.19.0/src/proxy_options.rs", + "vendor/git2-0.19.0/src/push_update.rs", + "vendor/git2-0.19.0/src/rebase.rs", + "vendor/git2-0.19.0/src/reference.rs", + "vendor/git2-0.19.0/src/reflog.rs", + "vendor/git2-0.19.0/src/refspec.rs", + "vendor/git2-0.19.0/src/remote.rs", + "vendor/git2-0.19.0/src/remote_callbacks.rs", + "vendor/git2-0.19.0/src/repo.rs", + "vendor/git2-0.19.0/src/revert.rs", + "vendor/git2-0.19.0/src/revspec.rs", + "vendor/git2-0.19.0/src/revwalk.rs", + "vendor/git2-0.19.0/src/signature.rs", + "vendor/git2-0.19.0/src/stash.rs", + "vendor/git2-0.19.0/src/status.rs", + "vendor/git2-0.19.0/src/string_array.rs", + "vendor/git2-0.19.0/src/submodule.rs", + "vendor/git2-0.19.0/src/tag.rs", + "vendor/git2-0.19.0/src/tagforeach.rs", + "vendor/git2-0.19.0/src/test.rs", + "vendor/git2-0.19.0/src/time.rs", + "vendor/git2-0.19.0/src/tracing.rs", + "vendor/git2-0.19.0/src/transaction.rs", + "vendor/git2-0.19.0/src/transport.rs", + "vendor/git2-0.19.0/src/tree.rs", + "vendor/git2-0.19.0/src/treebuilder.rs", + "vendor/git2-0.19.0/src/util.rs", + "vendor/git2-0.19.0/src/version.rs", + "vendor/git2-0.19.0/src/worktree.rs", + ], + crate = "git2", + crate_root = "vendor/git2-0.19.0/src/lib.rs", + edition = "2018", + env = { + "CARGO_MANIFEST_DIR": "vendor/git2-0.19.0", + "CARGO_PKG_AUTHORS": "Josh Triplett :Alex Crichton ", + "CARGO_PKG_DESCRIPTION": "Bindings to libgit2 for interoperating with git repositories. This library is\nboth threadsafe and memory safe and allows both reading and writing git\nrepositories.\n", + "CARGO_PKG_NAME": "git2", + "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/git2-rs", + "CARGO_PKG_VERSION": "0.19.0", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "19", + "CARGO_PKG_VERSION_PATCH": "0", + }, + visibility = [], + deps = [ + ":bitflags-2.6.0", + ":libc-0.2.169", + ":libgit2-sys-0.17.0+1.8.1", + ":log-0.4.22", + ":url-2.5.3", + ], +) + cargo.rust_library( name = "glob-0.3.1", srcs = ["vendor/glob-0.3.1/src/lib.rs"], @@ -5121,6 +9209,27 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "group-0.13.0", + srcs = [ + "vendor/group-0.13.0/src/cofactor.rs", + "vendor/group-0.13.0/src/lib.rs", + "vendor/group-0.13.0/src/prime.rs", + "vendor/group-0.13.0/src/tests/mod.rs", + "vendor/group-0.13.0/src/wnaf.rs", + ], + crate = "group", + crate_root = "vendor/group-0.13.0/src/lib.rs", + edition = "2021", + features = ["alloc"], + visibility = [], + deps = [ + ":ff-0.13.0", + ":rand_core-0.6.4", + ":subtle-2.6.1", + ], +) + cargo.rust_library( name = "h2-0.3.26", srcs = [ @@ -5271,6 +9380,41 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "hashbrown-0.12.3", + srcs = [ + "vendor/hashbrown-0.12.3/src/external_trait_impls/mod.rs", + "vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/helpers.rs", + "vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/map.rs", + "vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/mod.rs", + "vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/raw.rs", + "vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/set.rs", + "vendor/hashbrown-0.12.3/src/external_trait_impls/serde.rs", + "vendor/hashbrown-0.12.3/src/lib.rs", + "vendor/hashbrown-0.12.3/src/macros.rs", + "vendor/hashbrown-0.12.3/src/map.rs", + "vendor/hashbrown-0.12.3/src/raw/alloc.rs", + "vendor/hashbrown-0.12.3/src/raw/bitmask.rs", + "vendor/hashbrown-0.12.3/src/raw/generic.rs", + "vendor/hashbrown-0.12.3/src/raw/mod.rs", + "vendor/hashbrown-0.12.3/src/raw/sse2.rs", + "vendor/hashbrown-0.12.3/src/rustc_entry.rs", + "vendor/hashbrown-0.12.3/src/scopeguard.rs", + "vendor/hashbrown-0.12.3/src/set.rs", + ], + crate = "hashbrown", + crate_root = "vendor/hashbrown-0.12.3/src/lib.rs", + edition = "2021", + features = [ + "ahash", + "default", + "inline-more", + "raw", + ], + visibility = [], + deps = [":ahash-0.7.8"], +) + cargo.rust_library( name = "hashbrown-0.14.5", srcs = [ @@ -5316,6 +9460,22 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "hashlink-0.9.1", + srcs = [ + "vendor/hashlink-0.9.1/src/lib.rs", + "vendor/hashlink-0.9.1/src/linked_hash_map.rs", + "vendor/hashlink-0.9.1/src/linked_hash_set.rs", + "vendor/hashlink-0.9.1/src/lru_cache.rs", + "vendor/hashlink-0.9.1/src/serde.rs", + ], + crate = "hashlink", + crate_root = "vendor/hashlink-0.9.1/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":hashbrown-0.14.5"], +) + cargo.rust_library( name = "hcl-edit-0.7.7", srcs = [ @@ -5469,6 +9629,113 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "headers-0.4.0", + srcs = [ + "vendor/headers-0.4.0/src/common/accept_ranges.rs", + "vendor/headers-0.4.0/src/common/access_control_allow_credentials.rs", + "vendor/headers-0.4.0/src/common/access_control_allow_headers.rs", + "vendor/headers-0.4.0/src/common/access_control_allow_methods.rs", + "vendor/headers-0.4.0/src/common/access_control_allow_origin.rs", + "vendor/headers-0.4.0/src/common/access_control_expose_headers.rs", + "vendor/headers-0.4.0/src/common/access_control_max_age.rs", + "vendor/headers-0.4.0/src/common/access_control_request_headers.rs", + "vendor/headers-0.4.0/src/common/access_control_request_method.rs", + "vendor/headers-0.4.0/src/common/age.rs", + "vendor/headers-0.4.0/src/common/allow.rs", + "vendor/headers-0.4.0/src/common/authorization.rs", + "vendor/headers-0.4.0/src/common/cache_control.rs", + "vendor/headers-0.4.0/src/common/connection.rs", + "vendor/headers-0.4.0/src/common/content_disposition.rs", + "vendor/headers-0.4.0/src/common/content_encoding.rs", + "vendor/headers-0.4.0/src/common/content_length.rs", + "vendor/headers-0.4.0/src/common/content_location.rs", + "vendor/headers-0.4.0/src/common/content_range.rs", + "vendor/headers-0.4.0/src/common/content_type.rs", + "vendor/headers-0.4.0/src/common/cookie.rs", + "vendor/headers-0.4.0/src/common/date.rs", + "vendor/headers-0.4.0/src/common/etag.rs", + "vendor/headers-0.4.0/src/common/expect.rs", + "vendor/headers-0.4.0/src/common/expires.rs", + "vendor/headers-0.4.0/src/common/host.rs", + "vendor/headers-0.4.0/src/common/if_match.rs", + "vendor/headers-0.4.0/src/common/if_modified_since.rs", + "vendor/headers-0.4.0/src/common/if_none_match.rs", + "vendor/headers-0.4.0/src/common/if_range.rs", + "vendor/headers-0.4.0/src/common/if_unmodified_since.rs", + "vendor/headers-0.4.0/src/common/last_modified.rs", + "vendor/headers-0.4.0/src/common/location.rs", + "vendor/headers-0.4.0/src/common/mod.rs", + "vendor/headers-0.4.0/src/common/origin.rs", + "vendor/headers-0.4.0/src/common/pragma.rs", + "vendor/headers-0.4.0/src/common/proxy_authorization.rs", + "vendor/headers-0.4.0/src/common/range.rs", + "vendor/headers-0.4.0/src/common/referer.rs", + "vendor/headers-0.4.0/src/common/referrer_policy.rs", + "vendor/headers-0.4.0/src/common/retry_after.rs", + "vendor/headers-0.4.0/src/common/sec_websocket_accept.rs", + "vendor/headers-0.4.0/src/common/sec_websocket_key.rs", + "vendor/headers-0.4.0/src/common/sec_websocket_version.rs", + "vendor/headers-0.4.0/src/common/server.rs", + "vendor/headers-0.4.0/src/common/set_cookie.rs", + "vendor/headers-0.4.0/src/common/strict_transport_security.rs", + "vendor/headers-0.4.0/src/common/te.rs", + "vendor/headers-0.4.0/src/common/transfer_encoding.rs", + "vendor/headers-0.4.0/src/common/upgrade.rs", + "vendor/headers-0.4.0/src/common/user_agent.rs", + "vendor/headers-0.4.0/src/common/vary.rs", + "vendor/headers-0.4.0/src/disabled/accept.rs", + "vendor/headers-0.4.0/src/disabled/accept_charset.rs", + "vendor/headers-0.4.0/src/disabled/accept_encoding.rs", + "vendor/headers-0.4.0/src/disabled/accept_language.rs", + "vendor/headers-0.4.0/src/disabled/content_language.rs", + "vendor/headers-0.4.0/src/disabled/from.rs", + "vendor/headers-0.4.0/src/disabled/last_event_id.rs", + "vendor/headers-0.4.0/src/disabled/link.rs", + "vendor/headers-0.4.0/src/disabled/prefer.rs", + "vendor/headers-0.4.0/src/disabled/preference_applied.rs", + "vendor/headers-0.4.0/src/disabled/util/charset.rs", + "vendor/headers-0.4.0/src/disabled/util/encoding.rs", + "vendor/headers-0.4.0/src/disabled/util/extended_value.rs", + "vendor/headers-0.4.0/src/disabled/util/quality_value.rs", + "vendor/headers-0.4.0/src/disabled/warning.rs", + "vendor/headers-0.4.0/src/lib.rs", + "vendor/headers-0.4.0/src/map_ext.rs", + "vendor/headers-0.4.0/src/util/csv.rs", + "vendor/headers-0.4.0/src/util/entity.rs", + "vendor/headers-0.4.0/src/util/flat_csv.rs", + "vendor/headers-0.4.0/src/util/fmt.rs", + "vendor/headers-0.4.0/src/util/http_date.rs", + "vendor/headers-0.4.0/src/util/iter.rs", + "vendor/headers-0.4.0/src/util/mod.rs", + "vendor/headers-0.4.0/src/util/seconds.rs", + "vendor/headers-0.4.0/src/util/value_string.rs", + ], + crate = "headers", + crate_root = "vendor/headers-0.4.0/src/lib.rs", + edition = "2015", + visibility = [], + deps = [ + ":base64-0.21.7", + ":bytes-1.10.0", + ":headers-core-0.3.0", + ":http-1.1.0", + ":httpdate-1.0.3", + ":mime-0.3.17", + ":sha1-0.10.6", + ], +) + +cargo.rust_library( + name = "headers-core-0.3.0", + srcs = ["vendor/headers-core-0.3.0/src/lib.rs"], + crate = "headers_core", + crate_root = "vendor/headers-core-0.3.0/src/lib.rs", + edition = "2015", + visibility = [], + deps = [":http-1.1.0"], +) + cargo.rust_library( name = "heck-0.4.1", srcs = [ @@ -5554,6 +9821,60 @@ cargo.rust_library( deps = [":arrayvec-0.7.6"], ) +cargo.rust_library( + name = "hex-literal-0.4.1", + srcs = [ + "vendor/hex-literal-0.4.1/README.md", + "vendor/hex-literal-0.4.1/src/lib.rs", + ], + crate = "hex_literal", + crate_root = "vendor/hex-literal-0.4.1/src/lib.rs", + edition = "2021", + visibility = [], +) + +cargo.rust_library( + name = "hkdf-0.12.4", + srcs = [ + "vendor/hkdf-0.12.4/src/errors.rs", + "vendor/hkdf-0.12.4/src/lib.rs", + "vendor/hkdf-0.12.4/src/sealed.rs", + ], + crate = "hkdf", + crate_root = "vendor/hkdf-0.12.4/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":hmac-0.12.1"], +) + +cargo.rust_library( + name = "hmac-0.11.0", + srcs = ["vendor/hmac-0.11.0/src/lib.rs"], + crate = "hmac", + crate_root = "vendor/hmac-0.11.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":crypto-mac-0.11.0", + ":digest-0.9.0", + ], +) + +cargo.rust_library( + name = "hmac-0.12.1", + srcs = [ + "vendor/hmac-0.12.1/src/lib.rs", + "vendor/hmac-0.12.1/src/optim.rs", + "vendor/hmac-0.12.1/src/simple.rs", + ], + crate = "hmac", + crate_root = "vendor/hmac-0.12.1/src/lib.rs", + edition = "2018", + features = ["reset"], + visibility = [], + deps = [":digest-0.10.7"], +) + cargo.rust_library( name = "home-0.5.9", srcs = [ @@ -5611,6 +9932,12 @@ cargo.rust_library( ], ) +alias( + name = "http", + actual = ":http-1.1.0", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "http-1.1.0", srcs = [ @@ -6422,6 +10749,42 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "ident_case-1.0.1", + srcs = ["vendor/ident_case-1.0.1/src/lib.rs"], + crate = "ident_case", + crate_root = "vendor/ident_case-1.0.1/src/lib.rs", + edition = "2015", + visibility = [], +) + +alias( + name = "idgenerator", + actual = ":idgenerator-2.0.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "idgenerator-2.0.0", + srcs = [ + "vendor/idgenerator-2.0.0/src/error.rs", + "vendor/idgenerator-2.0.0/src/generator.rs", + "vendor/idgenerator-2.0.0/src/instance.rs", + "vendor/idgenerator-2.0.0/src/lib.rs", + "vendor/idgenerator-2.0.0/src/options.rs", + ], + crate = "idgenerator", + crate_root = "vendor/idgenerator-2.0.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":chrono-0.4.39", + ":once_cell-1.20.3", + ":parking_lot-0.12.3", + ":thiserror-1.0.65", + ], +) + cargo.rust_library( name = "idna-1.0.3", srcs = [ @@ -6476,6 +10839,93 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "indexmap-1.9.3", + srcs = [ + "vendor/indexmap-1.9.3/src/arbitrary.rs", + "vendor/indexmap-1.9.3/src/equivalent.rs", + "vendor/indexmap-1.9.3/src/lib.rs", + "vendor/indexmap-1.9.3/src/macros.rs", + "vendor/indexmap-1.9.3/src/map.rs", + "vendor/indexmap-1.9.3/src/map/core.rs", + "vendor/indexmap-1.9.3/src/map/core/raw.rs", + "vendor/indexmap-1.9.3/src/mutable_keys.rs", + "vendor/indexmap-1.9.3/src/rayon/map.rs", + "vendor/indexmap-1.9.3/src/rayon/mod.rs", + "vendor/indexmap-1.9.3/src/rayon/set.rs", + "vendor/indexmap-1.9.3/src/rustc.rs", + "vendor/indexmap-1.9.3/src/serde.rs", + "vendor/indexmap-1.9.3/src/serde_seq.rs", + "vendor/indexmap-1.9.3/src/set.rs", + "vendor/indexmap-1.9.3/src/util.rs", + ], + crate = "indexmap", + crate_root = "vendor/indexmap-1.9.3/src/lib.rs", + edition = "2021", + features = [ + "serde", + "serde-1", + "std", + ], + rustc_flags = ["@$(location :indexmap-1.9.3-build-script-run[rustc_flags])"], + visibility = [], + deps = [ + ":hashbrown-0.12.3", + ":serde-1.0.217", + ], +) + +cargo.rust_binary( + name = "indexmap-1.9.3-build-script-build", + srcs = [ + "vendor/indexmap-1.9.3/benches/bench.rs", + "vendor/indexmap-1.9.3/benches/faststring.rs", + "vendor/indexmap-1.9.3/build.rs", + "vendor/indexmap-1.9.3/src/arbitrary.rs", + "vendor/indexmap-1.9.3/src/equivalent.rs", + "vendor/indexmap-1.9.3/src/lib.rs", + "vendor/indexmap-1.9.3/src/macros.rs", + "vendor/indexmap-1.9.3/src/map.rs", + "vendor/indexmap-1.9.3/src/map/core.rs", + "vendor/indexmap-1.9.3/src/map/core/raw.rs", + "vendor/indexmap-1.9.3/src/mutable_keys.rs", + "vendor/indexmap-1.9.3/src/rayon/map.rs", + "vendor/indexmap-1.9.3/src/rayon/mod.rs", + "vendor/indexmap-1.9.3/src/rayon/set.rs", + "vendor/indexmap-1.9.3/src/rustc.rs", + "vendor/indexmap-1.9.3/src/serde.rs", + "vendor/indexmap-1.9.3/src/serde_seq.rs", + "vendor/indexmap-1.9.3/src/set.rs", + "vendor/indexmap-1.9.3/src/util.rs", + "vendor/indexmap-1.9.3/tests/equivalent_trait.rs", + "vendor/indexmap-1.9.3/tests/macros_full_path.rs", + "vendor/indexmap-1.9.3/tests/quick.rs", + "vendor/indexmap-1.9.3/tests/tests.rs", + ], + crate = "build_script_build", + crate_root = "vendor/indexmap-1.9.3/build.rs", + edition = "2021", + features = [ + "serde", + "serde-1", + "std", + ], + visibility = [], + deps = [":autocfg-1.3.0"], +) + +buildscript_run( + name = "indexmap-1.9.3-build-script-run", + package_name = "indexmap", + buildscript_rule = ":indexmap-1.9.3-build-script-build", + features = [ + "serde", + "serde-1", + "std", + ], + version = "1.9.3", +) + cargo.rust_library( name = "indexmap-2.4.0", srcs = [ @@ -6521,6 +10971,26 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "inherent-1.0.11", + srcs = [ + "vendor/inherent-1.0.11/src/expand.rs", + "vendor/inherent-1.0.11/src/lib.rs", + "vendor/inherent-1.0.11/src/parse.rs", + "vendor/inherent-1.0.11/src/verbatim.rs", + ], + crate = "inherent", + crate_root = "vendor/inherent-1.0.11/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "inout-0.1.3", srcs = [ @@ -6545,23 +11015,110 @@ cargo.rust_library( ) cargo.rust_library( - name = "io-lifetimes-1.0.11", - srcs = [ - "vendor/io-lifetimes-1.0.11/src/example_ffi.rs", - "vendor/io-lifetimes-1.0.11/src/impls_async_std.rs", - "vendor/io-lifetimes-1.0.11/src/impls_fs_err.rs", - "vendor/io-lifetimes-1.0.11/src/impls_mio.rs", - "vendor/io-lifetimes-1.0.11/src/impls_os_pipe.rs", - "vendor/io-lifetimes-1.0.11/src/impls_socket2.rs", - "vendor/io-lifetimes-1.0.11/src/impls_std.rs", - "vendor/io-lifetimes-1.0.11/src/impls_tokio.rs", - "vendor/io-lifetimes-1.0.11/src/lib.rs", - "vendor/io-lifetimes-1.0.11/src/portability.rs", - "vendor/io-lifetimes-1.0.11/src/raw.rs", - "vendor/io-lifetimes-1.0.11/src/traits.rs", - "vendor/io-lifetimes-1.0.11/src/types.rs", - "vendor/io-lifetimes-1.0.11/src/views.rs", - ], + name = "internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7", + srcs = [ + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/README.md", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/algorithm.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/algorithm/name.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/authorized_keys.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate/builder.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate/cert_type.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate/field.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate/options_map.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate/signing_key.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/certificate/unix_time.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/error.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/fingerprint.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/fingerprint/randomart.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/kdf.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/known_hosts.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/lib.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/mpint.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/ppk.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/dsa.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/ecdsa.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/ed25519.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/keypair.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/opaque.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/rsa.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/private/sk.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/dsa.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/ecdsa.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/ed25519.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/key_data.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/opaque.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/rsa.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/sk.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/public/ssh_format.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/signature.rs", + "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/sshsig.rs", + ], + crate = "internal_russh_forked_ssh_key", + crate_root = "vendor/internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "ecdsa", + "ed25519", + "encryption", + "p256", + "p384", + "p521", + "ppk", + "rand_core", + "rsa", + "rsa-sha1", + "std", + ], + named_deps = { + "bigint": ":num-bigint-dig-0.8.4", + "cipher": ":ssh-cipher-0.2.0", + "encoding": ":ssh-encoding-0.2.0", + }, + visibility = [], + deps = [ + ":argon2-0.5.3", + ":bcrypt-pbkdf-0.10.0", + ":ecdsa-0.16.9", + ":ed25519-dalek-2.1.1", + ":hex-0.4.3", + ":hmac-0.12.1", + ":p256-0.13.2", + ":p384-0.13.0", + ":p521-0.13.3", + ":rand_core-0.6.4", + ":rsa-0.9.6", + ":sec1-0.7.3", + ":sha1-0.10.6", + ":sha2-0.10.8", + ":signature-2.2.0", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], +) + +cargo.rust_library( + name = "io-lifetimes-1.0.11", + srcs = [ + "vendor/io-lifetimes-1.0.11/src/example_ffi.rs", + "vendor/io-lifetimes-1.0.11/src/impls_async_std.rs", + "vendor/io-lifetimes-1.0.11/src/impls_fs_err.rs", + "vendor/io-lifetimes-1.0.11/src/impls_mio.rs", + "vendor/io-lifetimes-1.0.11/src/impls_os_pipe.rs", + "vendor/io-lifetimes-1.0.11/src/impls_socket2.rs", + "vendor/io-lifetimes-1.0.11/src/impls_std.rs", + "vendor/io-lifetimes-1.0.11/src/impls_tokio.rs", + "vendor/io-lifetimes-1.0.11/src/lib.rs", + "vendor/io-lifetimes-1.0.11/src/portability.rs", + "vendor/io-lifetimes-1.0.11/src/raw.rs", + "vendor/io-lifetimes-1.0.11/src/traits.rs", + "vendor/io-lifetimes-1.0.11/src/types.rs", + "vendor/io-lifetimes-1.0.11/src/views.rs", + ], crate = "io_lifetimes", crate_root = "vendor/io-lifetimes-1.0.11/src/lib.rs", edition = "2018", @@ -6663,6 +11220,15 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "is_debug-1.0.1", + srcs = ["vendor/is_debug-1.0.1/src/lib.rs"], + crate = "is_debug", + crate_root = "vendor/is_debug-1.0.1/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "is_terminal_polyfill-1.70.1", srcs = ["vendor/is_terminal_polyfill-1.70.1/src/lib.rs"], @@ -6737,6 +11303,142 @@ cargo.rust_library( deps = [":either-1.13.0"], ) +cargo.rust_library( + name = "itertools-0.13.0", + srcs = [ + "vendor/itertools-0.13.0/src/adaptors/coalesce.rs", + "vendor/itertools-0.13.0/src/adaptors/map.rs", + "vendor/itertools-0.13.0/src/adaptors/mod.rs", + "vendor/itertools-0.13.0/src/adaptors/multi_product.rs", + "vendor/itertools-0.13.0/src/combinations.rs", + "vendor/itertools-0.13.0/src/combinations_with_replacement.rs", + "vendor/itertools-0.13.0/src/concat_impl.rs", + "vendor/itertools-0.13.0/src/cons_tuples_impl.rs", + "vendor/itertools-0.13.0/src/diff.rs", + "vendor/itertools-0.13.0/src/duplicates_impl.rs", + "vendor/itertools-0.13.0/src/either_or_both.rs", + "vendor/itertools-0.13.0/src/exactly_one_err.rs", + "vendor/itertools-0.13.0/src/extrema_set.rs", + "vendor/itertools-0.13.0/src/flatten_ok.rs", + "vendor/itertools-0.13.0/src/format.rs", + "vendor/itertools-0.13.0/src/free.rs", + "vendor/itertools-0.13.0/src/group_map.rs", + "vendor/itertools-0.13.0/src/groupbylazy.rs", + "vendor/itertools-0.13.0/src/grouping_map.rs", + "vendor/itertools-0.13.0/src/impl_macros.rs", + "vendor/itertools-0.13.0/src/intersperse.rs", + "vendor/itertools-0.13.0/src/iter_index.rs", + "vendor/itertools-0.13.0/src/k_smallest.rs", + "vendor/itertools-0.13.0/src/kmerge_impl.rs", + "vendor/itertools-0.13.0/src/lazy_buffer.rs", + "vendor/itertools-0.13.0/src/lib.rs", + "vendor/itertools-0.13.0/src/merge_join.rs", + "vendor/itertools-0.13.0/src/minmax.rs", + "vendor/itertools-0.13.0/src/multipeek_impl.rs", + "vendor/itertools-0.13.0/src/pad_tail.rs", + "vendor/itertools-0.13.0/src/peek_nth.rs", + "vendor/itertools-0.13.0/src/peeking_take_while.rs", + "vendor/itertools-0.13.0/src/permutations.rs", + "vendor/itertools-0.13.0/src/powerset.rs", + "vendor/itertools-0.13.0/src/process_results_impl.rs", + "vendor/itertools-0.13.0/src/put_back_n_impl.rs", + "vendor/itertools-0.13.0/src/rciter_impl.rs", + "vendor/itertools-0.13.0/src/repeatn.rs", + "vendor/itertools-0.13.0/src/size_hint.rs", + "vendor/itertools-0.13.0/src/sources.rs", + "vendor/itertools-0.13.0/src/take_while_inclusive.rs", + "vendor/itertools-0.13.0/src/tee.rs", + "vendor/itertools-0.13.0/src/tuple_impl.rs", + "vendor/itertools-0.13.0/src/unique_impl.rs", + "vendor/itertools-0.13.0/src/unziptuple.rs", + "vendor/itertools-0.13.0/src/with_position.rs", + "vendor/itertools-0.13.0/src/zip_eq_impl.rs", + "vendor/itertools-0.13.0/src/zip_longest.rs", + "vendor/itertools-0.13.0/src/ziptuple.rs", + ], + crate = "itertools", + crate_root = "vendor/itertools-0.13.0/src/lib.rs", + edition = "2018", + features = [ + "use_alloc", + "use_std", + ], + visibility = [], + deps = [":either-1.13.0"], +) + +alias( + name = "itertools", + actual = ":itertools-0.14.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "itertools-0.14.0", + srcs = [ + "vendor/itertools-0.14.0/src/adaptors/coalesce.rs", + "vendor/itertools-0.14.0/src/adaptors/map.rs", + "vendor/itertools-0.14.0/src/adaptors/mod.rs", + "vendor/itertools-0.14.0/src/adaptors/multi_product.rs", + "vendor/itertools-0.14.0/src/combinations.rs", + "vendor/itertools-0.14.0/src/combinations_with_replacement.rs", + "vendor/itertools-0.14.0/src/concat_impl.rs", + "vendor/itertools-0.14.0/src/cons_tuples_impl.rs", + "vendor/itertools-0.14.0/src/diff.rs", + "vendor/itertools-0.14.0/src/duplicates_impl.rs", + "vendor/itertools-0.14.0/src/either_or_both.rs", + "vendor/itertools-0.14.0/src/exactly_one_err.rs", + "vendor/itertools-0.14.0/src/extrema_set.rs", + "vendor/itertools-0.14.0/src/flatten_ok.rs", + "vendor/itertools-0.14.0/src/format.rs", + "vendor/itertools-0.14.0/src/free.rs", + "vendor/itertools-0.14.0/src/group_map.rs", + "vendor/itertools-0.14.0/src/groupbylazy.rs", + "vendor/itertools-0.14.0/src/grouping_map.rs", + "vendor/itertools-0.14.0/src/impl_macros.rs", + "vendor/itertools-0.14.0/src/intersperse.rs", + "vendor/itertools-0.14.0/src/iter_index.rs", + "vendor/itertools-0.14.0/src/k_smallest.rs", + "vendor/itertools-0.14.0/src/kmerge_impl.rs", + "vendor/itertools-0.14.0/src/lazy_buffer.rs", + "vendor/itertools-0.14.0/src/lib.rs", + "vendor/itertools-0.14.0/src/merge_join.rs", + "vendor/itertools-0.14.0/src/minmax.rs", + "vendor/itertools-0.14.0/src/multipeek_impl.rs", + "vendor/itertools-0.14.0/src/next_array.rs", + "vendor/itertools-0.14.0/src/pad_tail.rs", + "vendor/itertools-0.14.0/src/peek_nth.rs", + "vendor/itertools-0.14.0/src/peeking_take_while.rs", + "vendor/itertools-0.14.0/src/permutations.rs", + "vendor/itertools-0.14.0/src/powerset.rs", + "vendor/itertools-0.14.0/src/process_results_impl.rs", + "vendor/itertools-0.14.0/src/put_back_n_impl.rs", + "vendor/itertools-0.14.0/src/rciter_impl.rs", + "vendor/itertools-0.14.0/src/repeatn.rs", + "vendor/itertools-0.14.0/src/size_hint.rs", + "vendor/itertools-0.14.0/src/sources.rs", + "vendor/itertools-0.14.0/src/take_while_inclusive.rs", + "vendor/itertools-0.14.0/src/tee.rs", + "vendor/itertools-0.14.0/src/tuple_impl.rs", + "vendor/itertools-0.14.0/src/unique_impl.rs", + "vendor/itertools-0.14.0/src/unziptuple.rs", + "vendor/itertools-0.14.0/src/with_position.rs", + "vendor/itertools-0.14.0/src/zip_eq_impl.rs", + "vendor/itertools-0.14.0/src/zip_longest.rs", + "vendor/itertools-0.14.0/src/ziptuple.rs", + ], + crate = "itertools", + crate_root = "vendor/itertools-0.14.0/src/lib.rs", + edition = "2018", + features = [ + "default", + "use_alloc", + "use_std", + ], + visibility = [], + deps = [":either-1.13.0"], +) + cargo.rust_library( name = "itoa-1.0.11", srcs = [ @@ -6749,6 +11451,43 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "jemalloc-sys-0.5.4+5.3.0-patched", + srcs = [ + "vendor/jemalloc-sys-0.5.4+5.3.0-patched/src/env.rs", + "vendor/jemalloc-sys-0.5.4+5.3.0-patched/src/lib.rs", + ], + crate = "jemalloc_sys", + crate_root = "vendor/jemalloc-sys-0.5.4+5.3.0-patched/src/lib.rs", + edition = "2018", + features = ["background_threads_runtime_support"], + visibility = [], + deps = [":libc-0.2.169"], +) + +alias( + name = "jemallocator", + actual = ":jemallocator-0.5.4", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "jemallocator-0.5.4", + srcs = ["vendor/jemallocator-0.5.4/src/lib.rs"], + crate = "jemallocator", + crate_root = "vendor/jemallocator-0.5.4/src/lib.rs", + edition = "2018", + features = [ + "background_threads_runtime_support", + "default", + ], + visibility = [], + deps = [ + ":jemalloc-sys-0.5.4+5.3.0-patched", + ":libc-0.2.169", + ], +) + cargo.rust_library( name = "jobserver-0.1.32", srcs = [ @@ -6778,6 +11517,58 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "json5-0.4.1", + srcs = [ + "vendor/json5-0.4.1/src/de.rs", + "vendor/json5-0.4.1/src/error.rs", + "vendor/json5-0.4.1/src/json5.pest", + "vendor/json5-0.4.1/src/lib.rs", + "vendor/json5-0.4.1/src/ser.rs", + ], + crate = "json5", + crate_root = "vendor/json5-0.4.1/src/lib.rs", + edition = "2018", + env = { + "CARGO_MANIFEST_DIR": "vendor/json5-0.4.1", + "CARGO_PKG_AUTHORS": "Callum Oakley ", + "CARGO_PKG_DESCRIPTION": "A Rust JSON5 serializer and deserializer which speaks Serde.", + "CARGO_PKG_NAME": "json5", + "CARGO_PKG_REPOSITORY": "https://github.com/callum-oakley/json5-rs", + "CARGO_PKG_VERSION": "0.4.1", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "4", + "CARGO_PKG_VERSION_PATCH": "1", + }, + visibility = [], + deps = [ + ":pest-2.7.11", + ":pest_derive-2.7.11", + ":serde-1.0.217", + ], +) + +cargo.rust_library( + name = "keccak-0.1.5", + srcs = [ + "vendor/keccak-0.1.5/src/armv8.rs", + "vendor/keccak-0.1.5/src/lib.rs", + "vendor/keccak-0.1.5/src/unroll.rs", + ], + crate = "keccak", + crate_root = "vendor/keccak-0.1.5/src/lib.rs", + edition = "2018", + platform = { + "linux-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], +) + cargo.rust_library( name = "kstring-2.0.2", srcs = [ @@ -6815,6 +11606,186 @@ cargo.rust_library( deps = [":log-0.4.22"], ) +cargo.rust_library( + name = "lalrpop-0.22.0", + srcs = [ + "vendor/lalrpop-0.22.0/src/api/mod.rs", + "vendor/lalrpop-0.22.0/src/build/action.rs", + "vendor/lalrpop-0.22.0/src/build/fake_term.rs", + "vendor/lalrpop-0.22.0/src/build/mod.rs", + "vendor/lalrpop-0.22.0/src/collections/map.rs", + "vendor/lalrpop-0.22.0/src/collections/mod.rs", + "vendor/lalrpop-0.22.0/src/collections/multimap.rs", + "vendor/lalrpop-0.22.0/src/collections/set.rs", + "vendor/lalrpop-0.22.0/src/file_text.rs", + "vendor/lalrpop-0.22.0/src/generate.rs", + "vendor/lalrpop-0.22.0/src/grammar/consts.rs", + "vendor/lalrpop-0.22.0/src/grammar/free_variables/mod.rs", + "vendor/lalrpop-0.22.0/src/grammar/free_variables/test.rs", + "vendor/lalrpop-0.22.0/src/grammar/mod.rs", + "vendor/lalrpop-0.22.0/src/grammar/parse_tree.rs", + "vendor/lalrpop-0.22.0/src/grammar/pattern.rs", + "vendor/lalrpop-0.22.0/src/grammar/repr.rs", + "vendor/lalrpop-0.22.0/src/grammar/token/mod.rs", + "vendor/lalrpop-0.22.0/src/grammar/token/test.rs", + "vendor/lalrpop-0.22.0/src/kernel_set.rs", + "vendor/lalrpop-0.22.0/src/lexer/dfa/interpret.rs", + "vendor/lalrpop-0.22.0/src/lexer/dfa/mod.rs", + "vendor/lalrpop-0.22.0/src/lexer/dfa/overlap.rs", + "vendor/lalrpop-0.22.0/src/lexer/dfa/test.rs", + "vendor/lalrpop-0.22.0/src/lexer/intern_token/mod.rs", + "vendor/lalrpop-0.22.0/src/lexer/mod.rs", + "vendor/lalrpop-0.22.0/src/lexer/nfa/interpret.rs", + "vendor/lalrpop-0.22.0/src/lexer/nfa/mod.rs", + "vendor/lalrpop-0.22.0/src/lexer/nfa/test.rs", + "vendor/lalrpop-0.22.0/src/lexer/re/mod.rs", + "vendor/lalrpop-0.22.0/src/lexer/re/test.rs", + "vendor/lalrpop-0.22.0/src/lib.rs", + "vendor/lalrpop-0.22.0/src/log.rs", + "vendor/lalrpop-0.22.0/src/lr1/build/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/build/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/build_lalr/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/build_lalr/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/codegen/ascent.rs", + "vendor/lalrpop-0.22.0/src/lr1/codegen/base.rs", + "vendor/lalrpop-0.22.0/src/lr1/codegen/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/codegen/parse_table.rs", + "vendor/lalrpop-0.22.0/src/lr1/codegen/test_all.rs", + "vendor/lalrpop-0.22.0/src/lr1/core/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/error/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/error/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/example/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/example/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/first/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/first/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/interpret.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/construct/merge.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/construct/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/construct/state_set.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/lane/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/table/context_set/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/table/context_set/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/table/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/lane_table/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/lookahead.rs", + "vendor/lalrpop-0.22.0/src/lr1/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/report/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/state_graph.rs", + "vendor/lalrpop-0.22.0/src/lr1/tls.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/reduce/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/reduce/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/shift/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/shift/test.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/trace_graph/mod.rs", + "vendor/lalrpop-0.22.0/src/lr1/trace/trace_graph/test.rs", + "vendor/lalrpop-0.22.0/src/main.rs", + "vendor/lalrpop-0.22.0/src/message/builder.rs", + "vendor/lalrpop-0.22.0/src/message/horiz.rs", + "vendor/lalrpop-0.22.0/src/message/indent.rs", + "vendor/lalrpop-0.22.0/src/message/message.rs", + "vendor/lalrpop-0.22.0/src/message/mod.rs", + "vendor/lalrpop-0.22.0/src/message/styled.rs", + "vendor/lalrpop-0.22.0/src/message/test.rs", + "vendor/lalrpop-0.22.0/src/message/text.rs", + "vendor/lalrpop-0.22.0/src/message/vert.rs", + "vendor/lalrpop-0.22.0/src/message/wrap.rs", + "vendor/lalrpop-0.22.0/src/normalize/cond_comp/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/cond_comp/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/inline/graph/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/inline/graph/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/inline/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/inline/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/lower/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/macro_expand/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/macro_expand/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/norm_util.rs", + "vendor/lalrpop-0.22.0/src/normalize/precedence/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/precedence/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/prevalidate/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/prevalidate/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/resolve/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/resolve/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/token_check/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/token_check/test.rs", + "vendor/lalrpop-0.22.0/src/normalize/tyinfer/mod.rs", + "vendor/lalrpop-0.22.0/src/normalize/tyinfer/test.rs", + "vendor/lalrpop-0.22.0/src/parser/lrgrammar.rs", + "vendor/lalrpop-0.22.0/src/parser/mod.rs", + "vendor/lalrpop-0.22.0/src/parser/test.rs", + "vendor/lalrpop-0.22.0/src/rust/mod.rs", + "vendor/lalrpop-0.22.0/src/session.rs", + "vendor/lalrpop-0.22.0/src/test_util.rs", + "vendor/lalrpop-0.22.0/src/tls/mod.rs", + "vendor/lalrpop-0.22.0/src/tok/mod.rs", + "vendor/lalrpop-0.22.0/src/tok/test.rs", + "vendor/lalrpop-0.22.0/src/util.rs", + ], + crate = "lalrpop", + crate_root = "vendor/lalrpop-0.22.0/src/lib.rs", + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/lalrpop-0.22.0", + "CARGO_PKG_AUTHORS": "Niko Matsakis ", + "CARGO_PKG_DESCRIPTION": "convenient LR(1) parser generator", + "CARGO_PKG_NAME": "lalrpop", + "CARGO_PKG_REPOSITORY": "https://github.com/lalrpop/lalrpop", + "CARGO_PKG_VERSION": "0.22.0", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "22", + "CARGO_PKG_VERSION_PATCH": "0", + }, + features = [ + "default", + "lexer", + "pico-args", + "unicode", + ], + visibility = [], + deps = [ + ":ascii-canvas-4.0.0", + ":bit-set-0.8.0", + ":ena-0.14.3", + ":itertools-0.13.0", + ":lalrpop-util-0.22.0", + ":petgraph-0.6.5", + ":pico-args-0.5.0", + ":regex-1.11.1", + ":regex-syntax-0.8.5", + ":sha3-0.10.8", + ":string_cache-0.8.7", + ":term-1.0.0", + ":unicode-xid-0.2.4", + ":walkdir-2.5.0", + ], +) + +cargo.rust_library( + name = "lalrpop-util-0.22.0", + srcs = [ + "vendor/lalrpop-util-0.22.0/src/lexer.rs", + "vendor/lalrpop-util-0.22.0/src/lib.rs", + "vendor/lalrpop-util-0.22.0/src/state_machine.rs", + ], + crate = "lalrpop_util", + crate_root = "vendor/lalrpop-util-0.22.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "lexer", + "regex-automata", + "std", + "unicode", + ], + visibility = [], + deps = [ + ":regex-automata-0.4.8", + ":rustversion-1.0.17", + ], +) + cargo.rust_library( name = "language-tags-0.3.2", srcs = [ @@ -7053,385 +12024,780 @@ cargo.rust_library( "extra_traits", "std", ], + rustc_flags = ["@$(location :libc-0.2.169-build-script-run[rustc_flags])"], visibility = [], ) -cargo.rust_library( - name = "libloading-0.8.5", - srcs = [ - "vendor/libloading-0.8.5/src/changelog.rs", - "vendor/libloading-0.8.5/src/error.rs", - "vendor/libloading-0.8.5/src/lib.rs", - "vendor/libloading-0.8.5/src/os/mod.rs", - "vendor/libloading-0.8.5/src/os/unix/consts.rs", - "vendor/libloading-0.8.5/src/os/unix/mod.rs", - "vendor/libloading-0.8.5/src/os/windows/mod.rs", - "vendor/libloading-0.8.5/src/safe.rs", - "vendor/libloading-0.8.5/src/test_helpers.rs", - "vendor/libloading-0.8.5/src/util.rs", - ], - crate = "libloading", - crate_root = "vendor/libloading-0.8.5/src/lib.rs", - edition = "2015", - platform = { - "linux-arm64": dict( - deps = [":cfg-if-1.0.0"], - ), - "linux-x86_64": dict( - deps = [":cfg-if-1.0.0"], - ), - "macos-arm64": dict( - deps = [":cfg-if-1.0.0"], - ), - "macos-x86_64": dict( - deps = [":cfg-if-1.0.0"], - ), - "windows-gnu": dict( - deps = [":windows-targets-0.52.6"], - ), - "windows-msvc": dict( - deps = [":windows-targets-0.52.6"], - ), - }, - visibility = [], -) - -cargo.rust_library( - name = "libm-0.2.8", +cargo.rust_binary( + name = "libc-0.2.169-build-script-build", srcs = [ - "vendor/libm-0.2.8/src/lib.rs", - "vendor/libm-0.2.8/src/libm_helper.rs", - "vendor/libm-0.2.8/src/math/acos.rs", - "vendor/libm-0.2.8/src/math/acosf.rs", - "vendor/libm-0.2.8/src/math/acosh.rs", - "vendor/libm-0.2.8/src/math/acoshf.rs", - "vendor/libm-0.2.8/src/math/asin.rs", - "vendor/libm-0.2.8/src/math/asinf.rs", - "vendor/libm-0.2.8/src/math/asinh.rs", - "vendor/libm-0.2.8/src/math/asinhf.rs", - "vendor/libm-0.2.8/src/math/atan.rs", - "vendor/libm-0.2.8/src/math/atan2.rs", - "vendor/libm-0.2.8/src/math/atan2f.rs", - "vendor/libm-0.2.8/src/math/atanf.rs", - "vendor/libm-0.2.8/src/math/atanh.rs", - "vendor/libm-0.2.8/src/math/atanhf.rs", - "vendor/libm-0.2.8/src/math/cbrt.rs", - "vendor/libm-0.2.8/src/math/cbrtf.rs", - "vendor/libm-0.2.8/src/math/ceil.rs", - "vendor/libm-0.2.8/src/math/ceilf.rs", - "vendor/libm-0.2.8/src/math/copysign.rs", - "vendor/libm-0.2.8/src/math/copysignf.rs", - "vendor/libm-0.2.8/src/math/cos.rs", - "vendor/libm-0.2.8/src/math/cosf.rs", - "vendor/libm-0.2.8/src/math/cosh.rs", - "vendor/libm-0.2.8/src/math/coshf.rs", - "vendor/libm-0.2.8/src/math/erf.rs", - "vendor/libm-0.2.8/src/math/erff.rs", - "vendor/libm-0.2.8/src/math/exp.rs", - "vendor/libm-0.2.8/src/math/exp10.rs", - "vendor/libm-0.2.8/src/math/exp10f.rs", - "vendor/libm-0.2.8/src/math/exp2.rs", - "vendor/libm-0.2.8/src/math/exp2f.rs", - "vendor/libm-0.2.8/src/math/expf.rs", - "vendor/libm-0.2.8/src/math/expm1.rs", - "vendor/libm-0.2.8/src/math/expm1f.rs", - "vendor/libm-0.2.8/src/math/expo2.rs", - "vendor/libm-0.2.8/src/math/fabs.rs", - "vendor/libm-0.2.8/src/math/fabsf.rs", - "vendor/libm-0.2.8/src/math/fdim.rs", - "vendor/libm-0.2.8/src/math/fdimf.rs", - "vendor/libm-0.2.8/src/math/fenv.rs", - "vendor/libm-0.2.8/src/math/floor.rs", - "vendor/libm-0.2.8/src/math/floorf.rs", - "vendor/libm-0.2.8/src/math/fma.rs", - "vendor/libm-0.2.8/src/math/fmaf.rs", - "vendor/libm-0.2.8/src/math/fmax.rs", - "vendor/libm-0.2.8/src/math/fmaxf.rs", - "vendor/libm-0.2.8/src/math/fmin.rs", - "vendor/libm-0.2.8/src/math/fminf.rs", - "vendor/libm-0.2.8/src/math/fmod.rs", - "vendor/libm-0.2.8/src/math/fmodf.rs", - "vendor/libm-0.2.8/src/math/frexp.rs", - "vendor/libm-0.2.8/src/math/frexpf.rs", - "vendor/libm-0.2.8/src/math/hypot.rs", - "vendor/libm-0.2.8/src/math/hypotf.rs", - "vendor/libm-0.2.8/src/math/ilogb.rs", - "vendor/libm-0.2.8/src/math/ilogbf.rs", - "vendor/libm-0.2.8/src/math/j0.rs", - "vendor/libm-0.2.8/src/math/j0f.rs", - "vendor/libm-0.2.8/src/math/j1.rs", - "vendor/libm-0.2.8/src/math/j1f.rs", - "vendor/libm-0.2.8/src/math/jn.rs", - "vendor/libm-0.2.8/src/math/jnf.rs", - "vendor/libm-0.2.8/src/math/k_cos.rs", - "vendor/libm-0.2.8/src/math/k_cosf.rs", - "vendor/libm-0.2.8/src/math/k_expo2.rs", - "vendor/libm-0.2.8/src/math/k_expo2f.rs", - "vendor/libm-0.2.8/src/math/k_sin.rs", - "vendor/libm-0.2.8/src/math/k_sinf.rs", - "vendor/libm-0.2.8/src/math/k_tan.rs", - "vendor/libm-0.2.8/src/math/k_tanf.rs", - "vendor/libm-0.2.8/src/math/ldexp.rs", - "vendor/libm-0.2.8/src/math/ldexpf.rs", - "vendor/libm-0.2.8/src/math/lgamma.rs", - "vendor/libm-0.2.8/src/math/lgamma_r.rs", - "vendor/libm-0.2.8/src/math/lgammaf.rs", - "vendor/libm-0.2.8/src/math/lgammaf_r.rs", - "vendor/libm-0.2.8/src/math/log.rs", - "vendor/libm-0.2.8/src/math/log10.rs", - "vendor/libm-0.2.8/src/math/log10f.rs", - "vendor/libm-0.2.8/src/math/log1p.rs", - "vendor/libm-0.2.8/src/math/log1pf.rs", - "vendor/libm-0.2.8/src/math/log2.rs", - "vendor/libm-0.2.8/src/math/log2f.rs", - "vendor/libm-0.2.8/src/math/logf.rs", - "vendor/libm-0.2.8/src/math/mod.rs", - "vendor/libm-0.2.8/src/math/modf.rs", - "vendor/libm-0.2.8/src/math/modff.rs", - "vendor/libm-0.2.8/src/math/nextafter.rs", - "vendor/libm-0.2.8/src/math/nextafterf.rs", - "vendor/libm-0.2.8/src/math/pow.rs", - "vendor/libm-0.2.8/src/math/powf.rs", - "vendor/libm-0.2.8/src/math/rem_pio2.rs", - "vendor/libm-0.2.8/src/math/rem_pio2_large.rs", - "vendor/libm-0.2.8/src/math/rem_pio2f.rs", - "vendor/libm-0.2.8/src/math/remainder.rs", - "vendor/libm-0.2.8/src/math/remainderf.rs", - "vendor/libm-0.2.8/src/math/remquo.rs", - "vendor/libm-0.2.8/src/math/remquof.rs", - "vendor/libm-0.2.8/src/math/rint.rs", - "vendor/libm-0.2.8/src/math/rintf.rs", - "vendor/libm-0.2.8/src/math/round.rs", - "vendor/libm-0.2.8/src/math/roundf.rs", - "vendor/libm-0.2.8/src/math/scalbn.rs", - "vendor/libm-0.2.8/src/math/scalbnf.rs", - "vendor/libm-0.2.8/src/math/sin.rs", - "vendor/libm-0.2.8/src/math/sincos.rs", - "vendor/libm-0.2.8/src/math/sincosf.rs", - "vendor/libm-0.2.8/src/math/sinf.rs", - "vendor/libm-0.2.8/src/math/sinh.rs", - "vendor/libm-0.2.8/src/math/sinhf.rs", - "vendor/libm-0.2.8/src/math/sqrt.rs", - "vendor/libm-0.2.8/src/math/sqrtf.rs", - "vendor/libm-0.2.8/src/math/tan.rs", - "vendor/libm-0.2.8/src/math/tanf.rs", - "vendor/libm-0.2.8/src/math/tanh.rs", - "vendor/libm-0.2.8/src/math/tanhf.rs", - "vendor/libm-0.2.8/src/math/tgamma.rs", - "vendor/libm-0.2.8/src/math/tgammaf.rs", - "vendor/libm-0.2.8/src/math/trunc.rs", - "vendor/libm-0.2.8/src/math/truncf.rs", + "vendor/libc-0.2.169/build.rs", + "vendor/libc-0.2.169/src/fixed_width_ints.rs", + "vendor/libc-0.2.169/src/fuchsia/aarch64.rs", + "vendor/libc-0.2.169/src/fuchsia/mod.rs", + "vendor/libc-0.2.169/src/fuchsia/riscv64.rs", + "vendor/libc-0.2.169/src/fuchsia/x86_64.rs", + "vendor/libc-0.2.169/src/hermit.rs", + "vendor/libc-0.2.169/src/lib.rs", + "vendor/libc-0.2.169/src/macros.rs", + "vendor/libc-0.2.169/src/psp.rs", + "vendor/libc-0.2.169/src/sgx.rs", + "vendor/libc-0.2.169/src/solid/aarch64.rs", + "vendor/libc-0.2.169/src/solid/arm.rs", + "vendor/libc-0.2.169/src/solid/mod.rs", + "vendor/libc-0.2.169/src/switch.rs", + "vendor/libc-0.2.169/src/teeos/mod.rs", + "vendor/libc-0.2.169/src/trusty.rs", + "vendor/libc-0.2.169/src/unix/aix/mod.rs", + "vendor/libc-0.2.169/src/unix/aix/powerpc64.rs", + "vendor/libc-0.2.169/src/unix/bsd/apple/b32/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/apple/b64/aarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/apple/b64/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/apple/b64/x86_64/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/apple/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/dragonfly/errno.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/dragonfly/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/aarch64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/arm.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd11/b32.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd12/x86_64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd13/x86_64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd14/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd14/x86_64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/freebsd15/x86_64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/powerpc.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/powerpc64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/riscv64.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/x86.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/freebsdlike/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/aarch64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/arm.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/mips.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/powerpc.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/riscv64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/sparc64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/x86.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/netbsd/x86_64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/aarch64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/arm.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/mips64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/mod.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/powerpc.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/powerpc64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/riscv64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/sparc64.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/x86.rs", + "vendor/libc-0.2.169/src/unix/bsd/netbsdlike/openbsd/x86_64.rs", + "vendor/libc-0.2.169/src/unix/haiku/b32.rs", + "vendor/libc-0.2.169/src/unix/haiku/b64.rs", + "vendor/libc-0.2.169/src/unix/haiku/mod.rs", + "vendor/libc-0.2.169/src/unix/haiku/native.rs", + "vendor/libc-0.2.169/src/unix/haiku/x86_64.rs", + "vendor/libc-0.2.169/src/unix/hurd/b32.rs", + "vendor/libc-0.2.169/src/unix/hurd/b64.rs", + "vendor/libc-0.2.169/src/unix/hurd/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b32/arm.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b32/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b32/x86/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b64/aarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b64/riscv64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/b64/x86_64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/android/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/emscripten/lfs64.rs", + "vendor/libc-0.2.169/src/unix/linux_like/emscripten/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/arch/generic/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/arch/mips/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/arch/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/arch/powerpc/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/arch/sparc/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/arm/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/csky/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/m68k/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/mips/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/powerpc.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/sparc/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b32/x86/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/loongarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/s390x.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/gnu/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/arm/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/hexagon.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/mips/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/powerpc.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/riscv32/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b32/x86/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/aarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/loongarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/mips64.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/powerpc64.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/s390x.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/b64/x86_64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/lfs64.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/musl/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/arm/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/mips/mips32/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/mips/mips64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/mips/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/x86_64/l4re.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/x86_64/mod.rs", + "vendor/libc-0.2.169/src/unix/linux_like/linux/uclibc/x86_64/other.rs", + "vendor/libc-0.2.169/src/unix/linux_like/mod.rs", + "vendor/libc-0.2.169/src/unix/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/aarch64/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/arm/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/espidf/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/generic.rs", + "vendor/libc-0.2.169/src/unix/newlib/horizon/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/powerpc/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/rtems/mod.rs", + "vendor/libc-0.2.169/src/unix/newlib/vita/mod.rs", + "vendor/libc-0.2.169/src/unix/nto/aarch64.rs", + "vendor/libc-0.2.169/src/unix/nto/mod.rs", + "vendor/libc-0.2.169/src/unix/nto/neutrino.rs", + "vendor/libc-0.2.169/src/unix/nto/x86_64.rs", + "vendor/libc-0.2.169/src/unix/nuttx/mod.rs", + "vendor/libc-0.2.169/src/unix/redox/mod.rs", + "vendor/libc-0.2.169/src/unix/solarish/compat.rs", + "vendor/libc-0.2.169/src/unix/solarish/illumos.rs", + "vendor/libc-0.2.169/src/unix/solarish/mod.rs", + "vendor/libc-0.2.169/src/unix/solarish/solaris.rs", + "vendor/libc-0.2.169/src/unix/solarish/x86.rs", + "vendor/libc-0.2.169/src/unix/solarish/x86_64.rs", + "vendor/libc-0.2.169/src/unix/solarish/x86_common.rs", + "vendor/libc-0.2.169/src/vxworks/aarch64.rs", + "vendor/libc-0.2.169/src/vxworks/arm.rs", + "vendor/libc-0.2.169/src/vxworks/mod.rs", + "vendor/libc-0.2.169/src/vxworks/powerpc.rs", + "vendor/libc-0.2.169/src/vxworks/powerpc64.rs", + "vendor/libc-0.2.169/src/vxworks/riscv32.rs", + "vendor/libc-0.2.169/src/vxworks/riscv64.rs", + "vendor/libc-0.2.169/src/vxworks/x86.rs", + "vendor/libc-0.2.169/src/vxworks/x86_64.rs", + "vendor/libc-0.2.169/src/wasi/mod.rs", + "vendor/libc-0.2.169/src/wasi/p2.rs", + "vendor/libc-0.2.169/src/windows/gnu/mod.rs", + "vendor/libc-0.2.169/src/windows/mod.rs", + "vendor/libc-0.2.169/src/windows/msvc/mod.rs", + "vendor/libc-0.2.169/src/xous.rs", + "vendor/libc-0.2.169/tests/const_fn.rs", + ], + crate = "build_script_build", + crate_root = "vendor/libc-0.2.169/build.rs", + edition = "2021", + features = [ + "default", + "extra_traits", + "std", ], - crate = "libm", - crate_root = "vendor/libm-0.2.8/src/lib.rs", - edition = "2018", - features = ["default"], visibility = [], ) -cargo.rust_library( - name = "libz-sys-1.1.20", - srcs = ["vendor/libz-sys-1.1.20/src/lib.rs"], - crate = "libz_sys", - crate_root = "vendor/libz-sys-1.1.20/src/lib.rs", +buildscript_run( + name = "libc-0.2.169-build-script-run", + package_name = "libc", + buildscript_rule = ":libc-0.2.169-build-script-build", + features = [ + "default", + "extra_traits", + "std", + ], + version = "0.2.169", +) + +cargo.rust_library( + name = "libgit2-sys-0.17.0+1.8.1", + srcs = [ + "vendor/libgit2-sys-0.17.0+1.8.1/build.rs", + "vendor/libgit2-sys-0.17.0+1.8.1/lib.rs", + ], + crate = "libgit2_sys", + crate_root = "vendor/libgit2-sys-0.17.0+1.8.1/lib.rs", edition = "2018", - features = ["libc"], + env = { + "OUT_DIR": "$(location :libgit2-sys-0.17.0+1.8.1-build-script-run[out_dir])", + }, + rustc_flags = [ + "-Lnative=$(location :libgit2-sys-0.17.0+1.8.1-build-script-run[out_dir])/build", + "-lstatic=git2", + ], visibility = [], - deps = [":libc-0.2.169"], + deps = [ + ":libc-0.2.169", + ":libz-sys-1.1.20", + ], ) -cargo.rust_library( - name = "linux-raw-sys-0.3.8", +cargo.rust_binary( + name = "libgit2-sys-0.17.0+1.8.1-build-script-build", srcs = [ - "vendor/linux-raw-sys-0.3.8/src/aarch64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/aarch64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/aarch64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/aarch64/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/arm/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/arm/general.rs", - "vendor/linux-raw-sys-0.3.8/src/arm/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/arm/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/lib.rs", - "vendor/linux-raw-sys-0.3.8/src/loongarch64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/loongarch64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/loongarch64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/loongarch64/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/mips/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/mips/general.rs", - "vendor/linux-raw-sys-0.3.8/src/mips/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/mips/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/mips64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/mips64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/mips64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/mips64/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc/general.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/powerpc64/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv32/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv32/general.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv32/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv32/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/riscv64/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/s390x/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/s390x/general.rs", - "vendor/linux-raw-sys-0.3.8/src/s390x/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/s390x/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc/general.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/sparc64/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/x32/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/x32/general.rs", - "vendor/linux-raw-sys-0.3.8/src/x32/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/x32/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/x86/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/x86/general.rs", - "vendor/linux-raw-sys-0.3.8/src/x86/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/x86/netlink.rs", - "vendor/linux-raw-sys-0.3.8/src/x86_64/errno.rs", - "vendor/linux-raw-sys-0.3.8/src/x86_64/general.rs", - "vendor/linux-raw-sys-0.3.8/src/x86_64/ioctl.rs", - "vendor/linux-raw-sys-0.3.8/src/x86_64/netlink.rs", + "vendor/libgit2-sys-0.17.0+1.8.1/build.rs", + "vendor/libgit2-sys-0.17.0+1.8.1/lib.rs", ], - crate = "linux_raw_sys", - crate_root = "vendor/linux-raw-sys-0.3.8/src/lib.rs", + crate = "build_script_build", + crate_root = "vendor/libgit2-sys-0.17.0+1.8.1/build.rs", edition = "2018", - features = [ - "errno", - "general", - "ioctl", - "no_std", + visibility = [], + deps = [ + ":cc-1.1.12", + ":pkg-config-0.3.30", + ], +) + +buildscript_run( + name = "libgit2-sys-0.17.0+1.8.1-build-script-run", + package_name = "libgit2-sys", + buildscript_rule = ":libgit2-sys-0.17.0+1.8.1-build-script-build", + env = { + "OPT_LEVEL": "3", + }, + version = "0.17.0+1.8.1", +) + +cargo.rust_library( + name = "libloading-0.8.5", + srcs = [ + "vendor/libloading-0.8.5/src/changelog.rs", + "vendor/libloading-0.8.5/src/error.rs", + "vendor/libloading-0.8.5/src/lib.rs", + "vendor/libloading-0.8.5/src/os/mod.rs", + "vendor/libloading-0.8.5/src/os/unix/consts.rs", + "vendor/libloading-0.8.5/src/os/unix/mod.rs", + "vendor/libloading-0.8.5/src/os/windows/mod.rs", + "vendor/libloading-0.8.5/src/safe.rs", + "vendor/libloading-0.8.5/src/test_helpers.rs", + "vendor/libloading-0.8.5/src/util.rs", ], + crate = "libloading", + crate_root = "vendor/libloading-0.8.5/src/lib.rs", + edition = "2015", + platform = { + "linux-arm64": dict( + deps = [":cfg-if-1.0.0"], + ), + "linux-x86_64": dict( + deps = [":cfg-if-1.0.0"], + ), + "macos-arm64": dict( + deps = [":cfg-if-1.0.0"], + ), + "macos-x86_64": dict( + deps = [":cfg-if-1.0.0"], + ), + "windows-gnu": dict( + deps = [":windows-targets-0.52.6"], + ), + "windows-msvc": dict( + deps = [":windows-targets-0.52.6"], + ), + }, visibility = [], ) cargo.rust_library( - name = "linux-raw-sys-0.4.14", + name = "libm-0.2.8", srcs = [ - "vendor/linux-raw-sys-0.4.14/src/aarch64/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/general.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/net.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/system.rs", - "vendor/linux-raw-sys-0.4.14/src/aarch64/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/general.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/net.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/system.rs", - "vendor/linux-raw-sys-0.4.14/src/arm/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/general.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/net.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/system.rs", - "vendor/linux-raw-sys-0.4.14/src/csky/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/elf.rs", - "vendor/linux-raw-sys-0.4.14/src/lib.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/general.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/net.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/system.rs", - "vendor/linux-raw-sys-0.4.14/src/loongarch64/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/general.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/net.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/system.rs", - "vendor/linux-raw-sys-0.4.14/src/mips/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/general.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/net.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/system.rs", - "vendor/linux-raw-sys-0.4.14/src/mips32r6/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/general.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/if_ether.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/if_packet.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/io_uring.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/ioctl.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/loop_device.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/mempolicy.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/net.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/netlink.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/prctl.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/system.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64/xdp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64r6/bootparam.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64r6/errno.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64r6/general.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64r6/if_arp.rs", - "vendor/linux-raw-sys-0.4.14/src/mips64r6/if_ether.rs", + "vendor/libm-0.2.8/src/lib.rs", + "vendor/libm-0.2.8/src/libm_helper.rs", + "vendor/libm-0.2.8/src/math/acos.rs", + "vendor/libm-0.2.8/src/math/acosf.rs", + "vendor/libm-0.2.8/src/math/acosh.rs", + "vendor/libm-0.2.8/src/math/acoshf.rs", + "vendor/libm-0.2.8/src/math/asin.rs", + "vendor/libm-0.2.8/src/math/asinf.rs", + "vendor/libm-0.2.8/src/math/asinh.rs", + "vendor/libm-0.2.8/src/math/asinhf.rs", + "vendor/libm-0.2.8/src/math/atan.rs", + "vendor/libm-0.2.8/src/math/atan2.rs", + "vendor/libm-0.2.8/src/math/atan2f.rs", + "vendor/libm-0.2.8/src/math/atanf.rs", + "vendor/libm-0.2.8/src/math/atanh.rs", + "vendor/libm-0.2.8/src/math/atanhf.rs", + "vendor/libm-0.2.8/src/math/cbrt.rs", + "vendor/libm-0.2.8/src/math/cbrtf.rs", + "vendor/libm-0.2.8/src/math/ceil.rs", + "vendor/libm-0.2.8/src/math/ceilf.rs", + "vendor/libm-0.2.8/src/math/copysign.rs", + "vendor/libm-0.2.8/src/math/copysignf.rs", + "vendor/libm-0.2.8/src/math/cos.rs", + "vendor/libm-0.2.8/src/math/cosf.rs", + "vendor/libm-0.2.8/src/math/cosh.rs", + "vendor/libm-0.2.8/src/math/coshf.rs", + "vendor/libm-0.2.8/src/math/erf.rs", + "vendor/libm-0.2.8/src/math/erff.rs", + "vendor/libm-0.2.8/src/math/exp.rs", + "vendor/libm-0.2.8/src/math/exp10.rs", + "vendor/libm-0.2.8/src/math/exp10f.rs", + "vendor/libm-0.2.8/src/math/exp2.rs", + "vendor/libm-0.2.8/src/math/exp2f.rs", + "vendor/libm-0.2.8/src/math/expf.rs", + "vendor/libm-0.2.8/src/math/expm1.rs", + "vendor/libm-0.2.8/src/math/expm1f.rs", + "vendor/libm-0.2.8/src/math/expo2.rs", + "vendor/libm-0.2.8/src/math/fabs.rs", + "vendor/libm-0.2.8/src/math/fabsf.rs", + "vendor/libm-0.2.8/src/math/fdim.rs", + "vendor/libm-0.2.8/src/math/fdimf.rs", + "vendor/libm-0.2.8/src/math/fenv.rs", + "vendor/libm-0.2.8/src/math/floor.rs", + "vendor/libm-0.2.8/src/math/floorf.rs", + "vendor/libm-0.2.8/src/math/fma.rs", + "vendor/libm-0.2.8/src/math/fmaf.rs", + "vendor/libm-0.2.8/src/math/fmax.rs", + "vendor/libm-0.2.8/src/math/fmaxf.rs", + "vendor/libm-0.2.8/src/math/fmin.rs", + "vendor/libm-0.2.8/src/math/fminf.rs", + "vendor/libm-0.2.8/src/math/fmod.rs", + "vendor/libm-0.2.8/src/math/fmodf.rs", + "vendor/libm-0.2.8/src/math/frexp.rs", + "vendor/libm-0.2.8/src/math/frexpf.rs", + "vendor/libm-0.2.8/src/math/hypot.rs", + "vendor/libm-0.2.8/src/math/hypotf.rs", + "vendor/libm-0.2.8/src/math/ilogb.rs", + "vendor/libm-0.2.8/src/math/ilogbf.rs", + "vendor/libm-0.2.8/src/math/j0.rs", + "vendor/libm-0.2.8/src/math/j0f.rs", + "vendor/libm-0.2.8/src/math/j1.rs", + "vendor/libm-0.2.8/src/math/j1f.rs", + "vendor/libm-0.2.8/src/math/jn.rs", + "vendor/libm-0.2.8/src/math/jnf.rs", + "vendor/libm-0.2.8/src/math/k_cos.rs", + "vendor/libm-0.2.8/src/math/k_cosf.rs", + "vendor/libm-0.2.8/src/math/k_expo2.rs", + "vendor/libm-0.2.8/src/math/k_expo2f.rs", + "vendor/libm-0.2.8/src/math/k_sin.rs", + "vendor/libm-0.2.8/src/math/k_sinf.rs", + "vendor/libm-0.2.8/src/math/k_tan.rs", + "vendor/libm-0.2.8/src/math/k_tanf.rs", + "vendor/libm-0.2.8/src/math/ldexp.rs", + "vendor/libm-0.2.8/src/math/ldexpf.rs", + "vendor/libm-0.2.8/src/math/lgamma.rs", + "vendor/libm-0.2.8/src/math/lgamma_r.rs", + "vendor/libm-0.2.8/src/math/lgammaf.rs", + "vendor/libm-0.2.8/src/math/lgammaf_r.rs", + "vendor/libm-0.2.8/src/math/log.rs", + "vendor/libm-0.2.8/src/math/log10.rs", + "vendor/libm-0.2.8/src/math/log10f.rs", + "vendor/libm-0.2.8/src/math/log1p.rs", + "vendor/libm-0.2.8/src/math/log1pf.rs", + "vendor/libm-0.2.8/src/math/log2.rs", + "vendor/libm-0.2.8/src/math/log2f.rs", + "vendor/libm-0.2.8/src/math/logf.rs", + "vendor/libm-0.2.8/src/math/mod.rs", + "vendor/libm-0.2.8/src/math/modf.rs", + "vendor/libm-0.2.8/src/math/modff.rs", + "vendor/libm-0.2.8/src/math/nextafter.rs", + "vendor/libm-0.2.8/src/math/nextafterf.rs", + "vendor/libm-0.2.8/src/math/pow.rs", + "vendor/libm-0.2.8/src/math/powf.rs", + "vendor/libm-0.2.8/src/math/rem_pio2.rs", + "vendor/libm-0.2.8/src/math/rem_pio2_large.rs", + "vendor/libm-0.2.8/src/math/rem_pio2f.rs", + "vendor/libm-0.2.8/src/math/remainder.rs", + "vendor/libm-0.2.8/src/math/remainderf.rs", + "vendor/libm-0.2.8/src/math/remquo.rs", + "vendor/libm-0.2.8/src/math/remquof.rs", + "vendor/libm-0.2.8/src/math/rint.rs", + "vendor/libm-0.2.8/src/math/rintf.rs", + "vendor/libm-0.2.8/src/math/round.rs", + "vendor/libm-0.2.8/src/math/roundf.rs", + "vendor/libm-0.2.8/src/math/scalbn.rs", + "vendor/libm-0.2.8/src/math/scalbnf.rs", + "vendor/libm-0.2.8/src/math/sin.rs", + "vendor/libm-0.2.8/src/math/sincos.rs", + "vendor/libm-0.2.8/src/math/sincosf.rs", + "vendor/libm-0.2.8/src/math/sinf.rs", + "vendor/libm-0.2.8/src/math/sinh.rs", + "vendor/libm-0.2.8/src/math/sinhf.rs", + "vendor/libm-0.2.8/src/math/sqrt.rs", + "vendor/libm-0.2.8/src/math/sqrtf.rs", + "vendor/libm-0.2.8/src/math/tan.rs", + "vendor/libm-0.2.8/src/math/tanf.rs", + "vendor/libm-0.2.8/src/math/tanh.rs", + "vendor/libm-0.2.8/src/math/tanhf.rs", + "vendor/libm-0.2.8/src/math/tgamma.rs", + "vendor/libm-0.2.8/src/math/tgammaf.rs", + "vendor/libm-0.2.8/src/math/trunc.rs", + "vendor/libm-0.2.8/src/math/truncf.rs", + ], + crate = "libm", + crate_root = "vendor/libm-0.2.8/src/lib.rs", + edition = "2018", + features = ["default"], + visibility = [], +) + +cargo.rust_library( + name = "libmimalloc-sys-0.1.39", + srcs = [ + "vendor/libmimalloc-sys-0.1.39/src/extended.rs", + "vendor/libmimalloc-sys-0.1.39/src/lib.rs", + ], + crate = "libmimalloc_sys", + crate_root = "vendor/libmimalloc-sys-0.1.39/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":libc-0.2.169"], +) + +cargo.rust_library( + name = "libsqlite3-sys-0.30.1", + srcs = [ + "vendor/libsqlite3-sys-0.30.1/src/error.rs", + "vendor/libsqlite3-sys-0.30.1/src/lib.rs", + ], + crate = "libsqlite3_sys", + crate_root = "vendor/libsqlite3-sys-0.30.1/src/lib.rs", + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/libsqlite3-sys-0.30.1", + "CARGO_PKG_AUTHORS": "The rusqlite developers", + "CARGO_PKG_DESCRIPTION": "Native bindings to the libsqlite3 library", + "CARGO_PKG_NAME": "libsqlite3-sys", + "CARGO_PKG_REPOSITORY": "https://github.com/rusqlite/rusqlite", + "CARGO_PKG_VERSION": "0.30.1", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "30", + "CARGO_PKG_VERSION_PATCH": "1", + "OUT_DIR": "$(location :libsqlite3-sys-0.30.1-build-script-run[out_dir])", + }, + features = [ + "bundled", + "bundled_bindings", + "cc", + "pkg-config", + "unlock_notify", + "vcpkg", + ], + visibility = [], +) + +cargo.rust_binary( + name = "libsqlite3-sys-0.30.1-build-script-build", + srcs = [ + "vendor/libsqlite3-sys-0.30.1/bindgen-bindings/bindgen_3.14.0.rs", + "vendor/libsqlite3-sys-0.30.1/bindgen-bindings/bindgen_3.14.0_ext.rs", + "vendor/libsqlite3-sys-0.30.1/build.rs", + "vendor/libsqlite3-sys-0.30.1/sqlcipher/bindgen_bundled_version.rs", + "vendor/libsqlite3-sys-0.30.1/sqlite3/bindgen_bundled_version.rs", + "vendor/libsqlite3-sys-0.30.1/sqlite3/bindgen_bundled_version_ext.rs", + "vendor/libsqlite3-sys-0.30.1/src/error.rs", + "vendor/libsqlite3-sys-0.30.1/src/lib.rs", + ], + crate = "build_script_build", + crate_root = "vendor/libsqlite3-sys-0.30.1/build.rs", + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/libsqlite3-sys-0.30.1", + "CARGO_PKG_AUTHORS": "The rusqlite developers", + "CARGO_PKG_DESCRIPTION": "Native bindings to the libsqlite3 library", + "CARGO_PKG_NAME": "libsqlite3-sys", + "CARGO_PKG_REPOSITORY": "https://github.com/rusqlite/rusqlite", + "CARGO_PKG_VERSION": "0.30.1", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "30", + "CARGO_PKG_VERSION_PATCH": "1", + }, + features = [ + "bundled", + "bundled_bindings", + "cc", + "pkg-config", + "unlock_notify", + "vcpkg", + ], + visibility = [], + deps = [ + ":cc-1.1.12", + ":pkg-config-0.3.30", + ":vcpkg-0.2.15", + ], +) + +buildscript_run( + name = "libsqlite3-sys-0.30.1-build-script-run", + package_name = "libsqlite3-sys", + buildscript_rule = ":libsqlite3-sys-0.30.1-build-script-build", + env = { + "OPT_LEVEL": "3", + }, + features = [ + "bundled", + "bundled_bindings", + "cc", + "pkg-config", + "unlock_notify", + "vcpkg", + ], + version = "0.30.1", +) + +cargo.rust_library( + name = "libz-sys-1.1.20", + srcs = ["vendor/libz-sys-1.1.20/src/lib.rs"], + crate = "libz_sys", + crate_root = "vendor/libz-sys-1.1.20/src/lib.rs", + edition = "2018", + env = { + "OUT_DIR": "$(location :libz-sys-1.1.20-build-script-run[out_dir])", + }, + features = ["libc"], + visibility = [], + deps = [":libc-0.2.169"], +) + +cargo.rust_binary( + name = "libz-sys-1.1.20-build-script-build", + srcs = [ + "vendor/libz-sys-1.1.20/build.rs", + "vendor/libz-sys-1.1.20/src/lib.rs", + "vendor/libz-sys-1.1.20/zng/cc.rs", + "vendor/libz-sys-1.1.20/zng/cmake.rs", + ], + crate = "build_script_build", + crate_root = "vendor/libz-sys-1.1.20/build.rs", + edition = "2018", + features = ["libc"], + visibility = [], + deps = [ + ":cc-1.1.12", + ":pkg-config-0.3.30", + ":vcpkg-0.2.15", + ], +) + +buildscript_run( + name = "libz-sys-1.1.20-build-script-run", + package_name = "libz-sys", + buildscript_rule = ":libz-sys-1.1.20-build-script-build", + env = { + "OPT_LEVEL": "3", + }, + features = ["libc"], + version = "1.1.20", +) + +cargo.rust_library( + name = "linux-raw-sys-0.3.8", + srcs = [ + "vendor/linux-raw-sys-0.3.8/src/aarch64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/aarch64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/aarch64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/aarch64/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/arm/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/arm/general.rs", + "vendor/linux-raw-sys-0.3.8/src/arm/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/arm/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/lib.rs", + "vendor/linux-raw-sys-0.3.8/src/loongarch64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/loongarch64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/loongarch64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/loongarch64/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/mips/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/mips/general.rs", + "vendor/linux-raw-sys-0.3.8/src/mips/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/mips/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/mips64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/mips64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/mips64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/mips64/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc/general.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/powerpc64/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv32/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv32/general.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv32/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv32/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/riscv64/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/s390x/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/s390x/general.rs", + "vendor/linux-raw-sys-0.3.8/src/s390x/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/s390x/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc/general.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/sparc64/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/x32/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/x32/general.rs", + "vendor/linux-raw-sys-0.3.8/src/x32/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/x32/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/x86/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/x86/general.rs", + "vendor/linux-raw-sys-0.3.8/src/x86/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/x86/netlink.rs", + "vendor/linux-raw-sys-0.3.8/src/x86_64/errno.rs", + "vendor/linux-raw-sys-0.3.8/src/x86_64/general.rs", + "vendor/linux-raw-sys-0.3.8/src/x86_64/ioctl.rs", + "vendor/linux-raw-sys-0.3.8/src/x86_64/netlink.rs", + ], + crate = "linux_raw_sys", + crate_root = "vendor/linux-raw-sys-0.3.8/src/lib.rs", + edition = "2018", + features = [ + "errno", + "general", + "ioctl", + "no_std", + ], + visibility = [], +) + +cargo.rust_library( + name = "linux-raw-sys-0.4.14", + srcs = [ + "vendor/linux-raw-sys-0.4.14/src/aarch64/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/general.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/net.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/system.rs", + "vendor/linux-raw-sys-0.4.14/src/aarch64/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/general.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/net.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/system.rs", + "vendor/linux-raw-sys-0.4.14/src/arm/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/general.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/net.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/system.rs", + "vendor/linux-raw-sys-0.4.14/src/csky/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/elf.rs", + "vendor/linux-raw-sys-0.4.14/src/lib.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/general.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/net.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/system.rs", + "vendor/linux-raw-sys-0.4.14/src/loongarch64/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/general.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/net.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/system.rs", + "vendor/linux-raw-sys-0.4.14/src/mips/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/general.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/net.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/system.rs", + "vendor/linux-raw-sys-0.4.14/src/mips32r6/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/general.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/if_ether.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/if_packet.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/io_uring.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/ioctl.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/loop_device.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/mempolicy.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/net.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/netlink.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/prctl.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/system.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64/xdp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64r6/bootparam.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64r6/errno.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64r6/general.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64r6/if_arp.rs", + "vendor/linux-raw-sys-0.4.14/src/mips64r6/if_ether.rs", "vendor/linux-raw-sys-0.4.14/src/mips64r6/if_packet.rs", "vendor/linux-raw-sys-0.4.14/src/mips64r6/io_uring.rs", "vendor/linux-raw-sys-0.4.14/src/mips64r6/ioctl.rs", @@ -7702,6 +13068,82 @@ cargo.rust_library( deps = [":value-bag-1.10.0"], ) +cargo.rust_library( + name = "logos-0.15.0", + srcs = [ + "vendor/logos-0.15.0/src/internal.rs", + "vendor/logos-0.15.0/src/lexer.rs", + "vendor/logos-0.15.0/src/lib.rs", + "vendor/logos-0.15.0/src/source.rs", + ], + crate = "logos", + crate_root = "vendor/logos-0.15.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "export_derive", + "logos-derive", + "std", + ], + visibility = [], + deps = [":logos-derive-0.15.0"], +) + +cargo.rust_library( + name = "logos-codegen-0.15.0", + srcs = [ + "vendor/logos-codegen-0.15.0/src/error.rs", + "vendor/logos-codegen-0.15.0/src/generator/context.rs", + "vendor/logos-codegen-0.15.0/src/generator/fork.rs", + "vendor/logos-codegen-0.15.0/src/generator/leaf.rs", + "vendor/logos-codegen-0.15.0/src/generator/mod.rs", + "vendor/logos-codegen-0.15.0/src/generator/rope.rs", + "vendor/logos-codegen-0.15.0/src/generator/tables.rs", + "vendor/logos-codegen-0.15.0/src/graph/fork.rs", + "vendor/logos-codegen-0.15.0/src/graph/impls.rs", + "vendor/logos-codegen-0.15.0/src/graph/meta.rs", + "vendor/logos-codegen-0.15.0/src/graph/mod.rs", + "vendor/logos-codegen-0.15.0/src/graph/range.rs", + "vendor/logos-codegen-0.15.0/src/graph/regex.rs", + "vendor/logos-codegen-0.15.0/src/graph/rope.rs", + "vendor/logos-codegen-0.15.0/src/leaf.rs", + "vendor/logos-codegen-0.15.0/src/lib.rs", + "vendor/logos-codegen-0.15.0/src/macros.rs", + "vendor/logos-codegen-0.15.0/src/mir.rs", + "vendor/logos-codegen-0.15.0/src/parser/definition.rs", + "vendor/logos-codegen-0.15.0/src/parser/ignore_flags.rs", + "vendor/logos-codegen-0.15.0/src/parser/mod.rs", + "vendor/logos-codegen-0.15.0/src/parser/nested.rs", + "vendor/logos-codegen-0.15.0/src/parser/subpattern.rs", + "vendor/logos-codegen-0.15.0/src/parser/type_params.rs", + "vendor/logos-codegen-0.15.0/src/util.rs", + ], + crate = "logos_codegen", + crate_root = "vendor/logos-codegen-0.15.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":beef-0.5.2", + ":fnv-1.0.7", + ":lazy_static-1.5.0", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":regex-syntax-0.8.5", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "logos-derive-0.15.0", + srcs = ["vendor/logos-derive-0.15.0/src/lib.rs"], + crate = "logos_derive", + crate_root = "vendor/logos-derive-0.15.0/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [":logos-codegen-0.15.0"], +) + cargo.rust_library( name = "lru-0.12.4", srcs = ["vendor/lru-0.12.4/src/lib.rs"], @@ -7716,6 +13158,38 @@ cargo.rust_library( deps = [":hashbrown-0.14.5"], ) +alias( + name = "lru-mem", + actual = ":lru-mem-0.3.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "lru-mem-0.3.0", + srcs = [ + "vendor/lru-mem-0.3.0/src/entry.rs", + "vendor/lru-mem-0.3.0/src/error.rs", + "vendor/lru-mem-0.3.0/src/iter.rs", + "vendor/lru-mem-0.3.0/src/lib.rs", + "vendor/lru-mem-0.3.0/src/mem_size.rs", + ], + crate = "lru_mem", + crate_root = "vendor/lru-mem-0.3.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":hashbrown-0.14.5"], +) + +cargo.rust_library( + name = "matchers-0.1.0", + srcs = ["vendor/matchers-0.1.0/src/lib.rs"], + crate = "matchers", + crate_root = "vendor/matchers-0.1.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":regex-automata-0.1.10"], +) + cargo.rust_library( name = "matchit-0.8.4", srcs = [ @@ -7733,6 +13207,44 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "md-5-0.10.6", + srcs = [ + "vendor/md-5-0.10.6/src/compress.rs", + "vendor/md-5-0.10.6/src/compress/loongarch64_asm.rs", + "vendor/md-5-0.10.6/src/compress/soft.rs", + "vendor/md-5-0.10.6/src/consts.rs", + "vendor/md-5-0.10.6/src/lib.rs", + ], + crate = "md5", + crate_root = "vendor/md-5-0.10.6/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":digest-0.10.7", + ], +) + +cargo.rust_library( + name = "md5-0.7.0", + srcs = ["vendor/md5-0.7.0/src/lib.rs"], + crate = "md5", + crate_root = "vendor/md5-0.7.0/src/lib.rs", + edition = "2015", + features = [ + "default", + "std", + ], + visibility = [], +) + +alias( + name = "memchr", + actual = ":memchr-2.7.4", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "memchr-2.7.4", srcs = [ @@ -7793,6 +13305,119 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "miette-7.5.0", + srcs = [ + "vendor/miette-7.5.0/src/chain.rs", + "vendor/miette-7.5.0/src/diagnostic_chain.rs", + "vendor/miette-7.5.0/src/diagnostic_impls.rs", + "vendor/miette-7.5.0/src/error.rs", + "vendor/miette-7.5.0/src/eyreish/context.rs", + "vendor/miette-7.5.0/src/eyreish/error.rs", + "vendor/miette-7.5.0/src/eyreish/fmt.rs", + "vendor/miette-7.5.0/src/eyreish/into_diagnostic.rs", + "vendor/miette-7.5.0/src/eyreish/kind.rs", + "vendor/miette-7.5.0/src/eyreish/macros.rs", + "vendor/miette-7.5.0/src/eyreish/mod.rs", + "vendor/miette-7.5.0/src/eyreish/ptr.rs", + "vendor/miette-7.5.0/src/eyreish/wrapper.rs", + "vendor/miette-7.5.0/src/handler.rs", + "vendor/miette-7.5.0/src/handlers/debug.rs", + "vendor/miette-7.5.0/src/handlers/graphical.rs", + "vendor/miette-7.5.0/src/handlers/json.rs", + "vendor/miette-7.5.0/src/handlers/mod.rs", + "vendor/miette-7.5.0/src/handlers/narratable.rs", + "vendor/miette-7.5.0/src/handlers/theme.rs", + "vendor/miette-7.5.0/src/highlighters/blank.rs", + "vendor/miette-7.5.0/src/highlighters/mod.rs", + "vendor/miette-7.5.0/src/highlighters/syntect.rs", + "vendor/miette-7.5.0/src/lib.rs", + "vendor/miette-7.5.0/src/macro_helpers.rs", + "vendor/miette-7.5.0/src/miette_diagnostic.rs", + "vendor/miette-7.5.0/src/named_source.rs", + "vendor/miette-7.5.0/src/panic.rs", + "vendor/miette-7.5.0/src/protocol.rs", + "vendor/miette-7.5.0/src/source_impls.rs", + ], + crate = "miette", + crate_root = "vendor/miette-7.5.0/src/lib.rs", + edition = "2018", + env = { + "CARGO_MANIFEST_DIR": "vendor/miette-7.5.0", + "CARGO_PKG_AUTHORS": "Kat Marchán ", + "CARGO_PKG_DESCRIPTION": "Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers.", + "CARGO_PKG_NAME": "miette", + "CARGO_PKG_REPOSITORY": "https://github.com/zkat/miette", + "CARGO_PKG_VERSION": "7.5.0", + "CARGO_PKG_VERSION_MAJOR": "7", + "CARGO_PKG_VERSION_MINOR": "5", + "CARGO_PKG_VERSION_PATCH": "0", + }, + features = [ + "default", + "derive", + "serde", + ], + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":miette-derive-7.5.0", + ":serde-1.0.217", + ":thiserror-1.0.65", + ":unicode-width-0.1.13", + ], +) + +cargo.rust_library( + name = "miette-derive-7.5.0", + srcs = [ + "vendor/miette-derive-7.5.0/src/code.rs", + "vendor/miette-derive-7.5.0/src/diagnostic.rs", + "vendor/miette-derive-7.5.0/src/diagnostic_arg.rs", + "vendor/miette-derive-7.5.0/src/diagnostic_source.rs", + "vendor/miette-derive-7.5.0/src/fmt.rs", + "vendor/miette-derive-7.5.0/src/forward.rs", + "vendor/miette-derive-7.5.0/src/help.rs", + "vendor/miette-derive-7.5.0/src/label.rs", + "vendor/miette-derive-7.5.0/src/lib.rs", + "vendor/miette-derive-7.5.0/src/related.rs", + "vendor/miette-derive-7.5.0/src/severity.rs", + "vendor/miette-derive-7.5.0/src/source_code.rs", + "vendor/miette-derive-7.5.0/src/url.rs", + "vendor/miette-derive-7.5.0/src/utils.rs", + ], + crate = "miette_derive", + crate_root = "vendor/miette-derive-7.5.0/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +alias( + name = "mimalloc", + actual = ":mimalloc-0.1.43", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "mimalloc-0.1.43", + srcs = [ + "vendor/mimalloc-0.1.43/src/extended.rs", + "vendor/mimalloc-0.1.43/src/lib.rs", + ], + crate = "mimalloc", + crate_root = "vendor/mimalloc-0.1.43/src/lib.rs", + edition = "2018", + features = ["default"], + visibility = [], + deps = [":libmimalloc-sys-0.1.39"], +) + cargo.rust_library( name = "mime-0.3.17", srcs = [ @@ -7816,6 +13441,9 @@ cargo.rust_library( crate = "mime_guess", crate_root = "vendor/mime_guess-2.0.5/src/lib.rs", edition = "2015", + env = { + "MIME_TYPES_GENERATED_PATH": "$(location :mime_guess-2.0.5-build-script-run[out_dir])/mime_types_generated.rs", + }, visibility = [], deps = [ ":mime-0.3.17", @@ -7823,6 +13451,31 @@ cargo.rust_library( ], ) +cargo.rust_binary( + name = "mime_guess-2.0.5-build-script-build", + srcs = [ + "vendor/mime_guess-2.0.5/benches/benchmark.rs", + "vendor/mime_guess-2.0.5/build.rs", + "vendor/mime_guess-2.0.5/examples/rev_map.rs", + "vendor/mime_guess-2.0.5/src/impl_bin_search.rs", + "vendor/mime_guess-2.0.5/src/impl_phf.rs", + "vendor/mime_guess-2.0.5/src/lib.rs", + "vendor/mime_guess-2.0.5/src/mime_types.rs", + ], + crate = "build_script_build", + crate_root = "vendor/mime_guess-2.0.5/build.rs", + edition = "2015", + visibility = [], + deps = [":unicase-2.7.0"], +) + +buildscript_run( + name = "mime_guess-2.0.5-build-script-run", + package_name = "mime_guess", + buildscript_rule = ":mime_guess-2.0.5-build-script-build", + version = "2.0.5", +) + cargo.rust_library( name = "minimal-lexical-0.2.1", srcs = [ @@ -8026,17 +13679,250 @@ cargo.rust_library( visibility = [], ) -cargo.rust_library( - name = "nibble_vec-0.1.0", - srcs = [ - "vendor/nibble_vec-0.1.0/src/lib.rs", - "vendor/nibble_vec-0.1.0/src/test.rs", +cargo.rust_library( + name = "new_debug_unreachable-1.0.6", + srcs = ["vendor/new_debug_unreachable-1.0.6/src/lib.rs"], + crate = "debug_unreachable", + crate_root = "vendor/new_debug_unreachable-1.0.6/src/lib.rs", + edition = "2021", + visibility = [], +) + +cargo.rust_library( + name = "nibble_vec-0.1.0", + srcs = [ + "vendor/nibble_vec-0.1.0/src/lib.rs", + "vendor/nibble_vec-0.1.0/src/test.rs", + ], + crate = "nibble_vec", + crate_root = "vendor/nibble_vec-0.1.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":smallvec-1.13.2"], +) + +cargo.rust_library( + name = "nix-0.29.0", + srcs = [ + "vendor/nix-0.29.0/src/dir.rs", + "vendor/nix-0.29.0/src/env.rs", + "vendor/nix-0.29.0/src/errno.rs", + "vendor/nix-0.29.0/src/fcntl.rs", + "vendor/nix-0.29.0/src/features.rs", + "vendor/nix-0.29.0/src/ifaddrs.rs", + "vendor/nix-0.29.0/src/kmod.rs", + "vendor/nix-0.29.0/src/lib.rs", + "vendor/nix-0.29.0/src/macros.rs", + "vendor/nix-0.29.0/src/mount/apple.rs", + "vendor/nix-0.29.0/src/mount/bsd_without_apple.rs", + "vendor/nix-0.29.0/src/mount/linux.rs", + "vendor/nix-0.29.0/src/mount/mod.rs", + "vendor/nix-0.29.0/src/mqueue.rs", + "vendor/nix-0.29.0/src/net/if_.rs", + "vendor/nix-0.29.0/src/net/mod.rs", + "vendor/nix-0.29.0/src/poll.rs", + "vendor/nix-0.29.0/src/poll_timeout.rs", + "vendor/nix-0.29.0/src/pty.rs", + "vendor/nix-0.29.0/src/sched.rs", + "vendor/nix-0.29.0/src/sys/aio.rs", + "vendor/nix-0.29.0/src/sys/epoll.rs", + "vendor/nix-0.29.0/src/sys/event.rs", + "vendor/nix-0.29.0/src/sys/eventfd.rs", + "vendor/nix-0.29.0/src/sys/fanotify.rs", + "vendor/nix-0.29.0/src/sys/inotify.rs", + "vendor/nix-0.29.0/src/sys/ioctl/bsd.rs", + "vendor/nix-0.29.0/src/sys/ioctl/linux.rs", + "vendor/nix-0.29.0/src/sys/ioctl/mod.rs", + "vendor/nix-0.29.0/src/sys/memfd.rs", + "vendor/nix-0.29.0/src/sys/mman.rs", + "vendor/nix-0.29.0/src/sys/mod.rs", + "vendor/nix-0.29.0/src/sys/personality.rs", + "vendor/nix-0.29.0/src/sys/prctl.rs", + "vendor/nix-0.29.0/src/sys/pthread.rs", + "vendor/nix-0.29.0/src/sys/ptrace/bsd.rs", + "vendor/nix-0.29.0/src/sys/ptrace/linux.rs", + "vendor/nix-0.29.0/src/sys/ptrace/mod.rs", + "vendor/nix-0.29.0/src/sys/quota.rs", + "vendor/nix-0.29.0/src/sys/reboot.rs", + "vendor/nix-0.29.0/src/sys/resource.rs", + "vendor/nix-0.29.0/src/sys/select.rs", + "vendor/nix-0.29.0/src/sys/sendfile.rs", + "vendor/nix-0.29.0/src/sys/signal.rs", + "vendor/nix-0.29.0/src/sys/signalfd.rs", + "vendor/nix-0.29.0/src/sys/socket/addr.rs", + "vendor/nix-0.29.0/src/sys/socket/mod.rs", + "vendor/nix-0.29.0/src/sys/socket/sockopt.rs", + "vendor/nix-0.29.0/src/sys/stat.rs", + "vendor/nix-0.29.0/src/sys/statfs.rs", + "vendor/nix-0.29.0/src/sys/statvfs.rs", + "vendor/nix-0.29.0/src/sys/sysinfo.rs", + "vendor/nix-0.29.0/src/sys/termios.rs", + "vendor/nix-0.29.0/src/sys/time.rs", + "vendor/nix-0.29.0/src/sys/timer.rs", + "vendor/nix-0.29.0/src/sys/timerfd.rs", + "vendor/nix-0.29.0/src/sys/uio.rs", + "vendor/nix-0.29.0/src/sys/utsname.rs", + "vendor/nix-0.29.0/src/sys/wait.rs", + "vendor/nix-0.29.0/src/time.rs", + "vendor/nix-0.29.0/src/ucontext.rs", + "vendor/nix-0.29.0/src/unistd.rs", + ], + crate = "nix", + crate_root = "vendor/nix-0.29.0/src/lib.rs", + edition = "2021", + features = [ + "fs", + "process", + "signal", + ], + rustc_flags = ["@$(location :nix-0.29.0-build-script-run[rustc_flags])"], + visibility = [], + deps = [ + ":bitflags-2.6.0", + ":cfg-if-1.0.0", + ":libc-0.2.169", + ], +) + +cargo.rust_binary( + name = "nix-0.29.0-build-script-build", + srcs = [ + "vendor/nix-0.29.0/build.rs", + "vendor/nix-0.29.0/src/dir.rs", + "vendor/nix-0.29.0/src/env.rs", + "vendor/nix-0.29.0/src/errno.rs", + "vendor/nix-0.29.0/src/fcntl.rs", + "vendor/nix-0.29.0/src/features.rs", + "vendor/nix-0.29.0/src/ifaddrs.rs", + "vendor/nix-0.29.0/src/kmod.rs", + "vendor/nix-0.29.0/src/lib.rs", + "vendor/nix-0.29.0/src/macros.rs", + "vendor/nix-0.29.0/src/mount/apple.rs", + "vendor/nix-0.29.0/src/mount/bsd_without_apple.rs", + "vendor/nix-0.29.0/src/mount/linux.rs", + "vendor/nix-0.29.0/src/mount/mod.rs", + "vendor/nix-0.29.0/src/mqueue.rs", + "vendor/nix-0.29.0/src/net/if_.rs", + "vendor/nix-0.29.0/src/net/mod.rs", + "vendor/nix-0.29.0/src/poll.rs", + "vendor/nix-0.29.0/src/poll_timeout.rs", + "vendor/nix-0.29.0/src/pty.rs", + "vendor/nix-0.29.0/src/sched.rs", + "vendor/nix-0.29.0/src/sys/aio.rs", + "vendor/nix-0.29.0/src/sys/epoll.rs", + "vendor/nix-0.29.0/src/sys/event.rs", + "vendor/nix-0.29.0/src/sys/eventfd.rs", + "vendor/nix-0.29.0/src/sys/fanotify.rs", + "vendor/nix-0.29.0/src/sys/inotify.rs", + "vendor/nix-0.29.0/src/sys/ioctl/bsd.rs", + "vendor/nix-0.29.0/src/sys/ioctl/linux.rs", + "vendor/nix-0.29.0/src/sys/ioctl/mod.rs", + "vendor/nix-0.29.0/src/sys/memfd.rs", + "vendor/nix-0.29.0/src/sys/mman.rs", + "vendor/nix-0.29.0/src/sys/mod.rs", + "vendor/nix-0.29.0/src/sys/personality.rs", + "vendor/nix-0.29.0/src/sys/prctl.rs", + "vendor/nix-0.29.0/src/sys/pthread.rs", + "vendor/nix-0.29.0/src/sys/ptrace/bsd.rs", + "vendor/nix-0.29.0/src/sys/ptrace/linux.rs", + "vendor/nix-0.29.0/src/sys/ptrace/mod.rs", + "vendor/nix-0.29.0/src/sys/quota.rs", + "vendor/nix-0.29.0/src/sys/reboot.rs", + "vendor/nix-0.29.0/src/sys/resource.rs", + "vendor/nix-0.29.0/src/sys/select.rs", + "vendor/nix-0.29.0/src/sys/sendfile.rs", + "vendor/nix-0.29.0/src/sys/signal.rs", + "vendor/nix-0.29.0/src/sys/signalfd.rs", + "vendor/nix-0.29.0/src/sys/socket/addr.rs", + "vendor/nix-0.29.0/src/sys/socket/mod.rs", + "vendor/nix-0.29.0/src/sys/socket/sockopt.rs", + "vendor/nix-0.29.0/src/sys/stat.rs", + "vendor/nix-0.29.0/src/sys/statfs.rs", + "vendor/nix-0.29.0/src/sys/statvfs.rs", + "vendor/nix-0.29.0/src/sys/sysinfo.rs", + "vendor/nix-0.29.0/src/sys/termios.rs", + "vendor/nix-0.29.0/src/sys/time.rs", + "vendor/nix-0.29.0/src/sys/timer.rs", + "vendor/nix-0.29.0/src/sys/timerfd.rs", + "vendor/nix-0.29.0/src/sys/uio.rs", + "vendor/nix-0.29.0/src/sys/utsname.rs", + "vendor/nix-0.29.0/src/sys/wait.rs", + "vendor/nix-0.29.0/src/time.rs", + "vendor/nix-0.29.0/src/ucontext.rs", + "vendor/nix-0.29.0/src/unistd.rs", + "vendor/nix-0.29.0/test/common/mod.rs", + "vendor/nix-0.29.0/test/mount/mod.rs", + "vendor/nix-0.29.0/test/mount/test_mount.rs", + "vendor/nix-0.29.0/test/mount/test_mount_apple.rs", + "vendor/nix-0.29.0/test/mount/test_nmount.rs", + "vendor/nix-0.29.0/test/sys/mod.rs", + "vendor/nix-0.29.0/test/sys/test_aio.rs", + "vendor/nix-0.29.0/test/sys/test_aio_drop.rs", + "vendor/nix-0.29.0/test/sys/test_epoll.rs", + "vendor/nix-0.29.0/test/sys/test_event.rs", + "vendor/nix-0.29.0/test/sys/test_fanotify.rs", + "vendor/nix-0.29.0/test/sys/test_inotify.rs", + "vendor/nix-0.29.0/test/sys/test_ioctl.rs", + "vendor/nix-0.29.0/test/sys/test_mman.rs", + "vendor/nix-0.29.0/test/sys/test_prctl.rs", + "vendor/nix-0.29.0/test/sys/test_pthread.rs", + "vendor/nix-0.29.0/test/sys/test_ptrace.rs", + "vendor/nix-0.29.0/test/sys/test_resource.rs", + "vendor/nix-0.29.0/test/sys/test_select.rs", + "vendor/nix-0.29.0/test/sys/test_signal.rs", + "vendor/nix-0.29.0/test/sys/test_signalfd.rs", + "vendor/nix-0.29.0/test/sys/test_socket.rs", + "vendor/nix-0.29.0/test/sys/test_sockopt.rs", + "vendor/nix-0.29.0/test/sys/test_stat.rs", + "vendor/nix-0.29.0/test/sys/test_statfs.rs", + "vendor/nix-0.29.0/test/sys/test_statvfs.rs", + "vendor/nix-0.29.0/test/sys/test_sysinfo.rs", + "vendor/nix-0.29.0/test/sys/test_termios.rs", + "vendor/nix-0.29.0/test/sys/test_time.rs", + "vendor/nix-0.29.0/test/sys/test_timer.rs", + "vendor/nix-0.29.0/test/sys/test_timerfd.rs", + "vendor/nix-0.29.0/test/sys/test_uio.rs", + "vendor/nix-0.29.0/test/sys/test_utsname.rs", + "vendor/nix-0.29.0/test/sys/test_wait.rs", + "vendor/nix-0.29.0/test/test.rs", + "vendor/nix-0.29.0/test/test_clearenv.rs", + "vendor/nix-0.29.0/test/test_dir.rs", + "vendor/nix-0.29.0/test/test_errno.rs", + "vendor/nix-0.29.0/test/test_fcntl.rs", + "vendor/nix-0.29.0/test/test_kmod/mod.rs", + "vendor/nix-0.29.0/test/test_mq.rs", + "vendor/nix-0.29.0/test/test_net.rs", + "vendor/nix-0.29.0/test/test_nix_path.rs", + "vendor/nix-0.29.0/test/test_poll.rs", + "vendor/nix-0.29.0/test/test_pty.rs", + "vendor/nix-0.29.0/test/test_sched.rs", + "vendor/nix-0.29.0/test/test_sendfile.rs", + "vendor/nix-0.29.0/test/test_stat.rs", + "vendor/nix-0.29.0/test/test_time.rs", + "vendor/nix-0.29.0/test/test_unistd.rs", + ], + crate = "build_script_build", + crate_root = "vendor/nix-0.29.0/build.rs", + edition = "2021", + features = [ + "fs", + "process", + "signal", ], - crate = "nibble_vec", - crate_root = "vendor/nibble_vec-0.1.0/src/lib.rs", - edition = "2018", visibility = [], - deps = [":smallvec-1.13.2"], + deps = [":cfg_aliases-0.2.1"], +) + +buildscript_run( + name = "nix-0.29.0-build-script-run", + package_name = "nix", + buildscript_rule = ":nix-0.29.0-build-script-build", + features = [ + "fs", + "process", + "signal", + ], + version = "0.29.0", ) cargo.rust_library( @@ -8086,6 +13972,18 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "nonempty-0.10.0", + srcs = [ + "vendor/nonempty-0.10.0/src/lib.rs", + "vendor/nonempty-0.10.0/src/nonzero.rs", + ], + crate = "nonempty", + crate_root = "vendor/nonempty-0.10.0/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "ntapi-0.4.1", srcs = [ @@ -8137,6 +14035,133 @@ cargo.rust_library( deps = [":winapi-0.3.9"], ) +cargo.rust_library( + name = "nu-ansi-term-0.46.0", + srcs = [ + "vendor/nu-ansi-term-0.46.0/src/ansi.rs", + "vendor/nu-ansi-term-0.46.0/src/debug.rs", + "vendor/nu-ansi-term-0.46.0/src/difference.rs", + "vendor/nu-ansi-term-0.46.0/src/display.rs", + "vendor/nu-ansi-term-0.46.0/src/gradient.rs", + "vendor/nu-ansi-term-0.46.0/src/lib.rs", + "vendor/nu-ansi-term-0.46.0/src/rgb.rs", + "vendor/nu-ansi-term-0.46.0/src/style.rs", + "vendor/nu-ansi-term-0.46.0/src/util.rs", + "vendor/nu-ansi-term-0.46.0/src/windows.rs", + "vendor/nu-ansi-term-0.46.0/src/write.rs", + ], + crate = "nu_ansi_term", + crate_root = "vendor/nu-ansi-term-0.46.0/src/lib.rs", + edition = "2018", + platform = { + "windows-gnu": dict( + deps = [":winapi-0.3.9"], + ), + "windows-msvc": dict( + deps = [":winapi-0.3.9"], + ), + }, + visibility = [], + deps = [":overload-0.1.1"], +) + +cargo.rust_library( + name = "num-bigint-0.4.6", + srcs = [ + "vendor/num-bigint-0.4.6/src/bigint.rs", + "vendor/num-bigint-0.4.6/src/bigint/addition.rs", + "vendor/num-bigint-0.4.6/src/bigint/arbitrary.rs", + "vendor/num-bigint-0.4.6/src/bigint/bits.rs", + "vendor/num-bigint-0.4.6/src/bigint/convert.rs", + "vendor/num-bigint-0.4.6/src/bigint/division.rs", + "vendor/num-bigint-0.4.6/src/bigint/multiplication.rs", + "vendor/num-bigint-0.4.6/src/bigint/power.rs", + "vendor/num-bigint-0.4.6/src/bigint/serde.rs", + "vendor/num-bigint-0.4.6/src/bigint/shift.rs", + "vendor/num-bigint-0.4.6/src/bigint/subtraction.rs", + "vendor/num-bigint-0.4.6/src/bigrand.rs", + "vendor/num-bigint-0.4.6/src/biguint.rs", + "vendor/num-bigint-0.4.6/src/biguint/addition.rs", + "vendor/num-bigint-0.4.6/src/biguint/arbitrary.rs", + "vendor/num-bigint-0.4.6/src/biguint/bits.rs", + "vendor/num-bigint-0.4.6/src/biguint/convert.rs", + "vendor/num-bigint-0.4.6/src/biguint/division.rs", + "vendor/num-bigint-0.4.6/src/biguint/iter.rs", + "vendor/num-bigint-0.4.6/src/biguint/monty.rs", + "vendor/num-bigint-0.4.6/src/biguint/multiplication.rs", + "vendor/num-bigint-0.4.6/src/biguint/power.rs", + "vendor/num-bigint-0.4.6/src/biguint/serde.rs", + "vendor/num-bigint-0.4.6/src/biguint/shift.rs", + "vendor/num-bigint-0.4.6/src/biguint/subtraction.rs", + "vendor/num-bigint-0.4.6/src/lib.rs", + "vendor/num-bigint-0.4.6/src/macros.rs", + ], + crate = "num_bigint", + crate_root = "vendor/num-bigint-0.4.6/src/lib.rs", + edition = "2021", + features = [ + "default", + "rand", + "std", + ], + visibility = [], + deps = [ + ":num-integer-0.1.46", + ":num-traits-0.2.19", + ":rand-0.8.5", + ], +) + +cargo.rust_library( + name = "num-bigint-dig-0.8.4", + srcs = [ + "vendor/num-bigint-dig-0.8.4/src/algorithms/add.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/bits.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/cmp.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/div.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/gcd.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/jacobi.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/mac.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/mod.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/mod_inverse.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/mul.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/shl.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/shr.rs", + "vendor/num-bigint-dig-0.8.4/src/algorithms/sub.rs", + "vendor/num-bigint-dig-0.8.4/src/bigint.rs", + "vendor/num-bigint-dig-0.8.4/src/bigrand.rs", + "vendor/num-bigint-dig-0.8.4/src/biguint.rs", + "vendor/num-bigint-dig-0.8.4/src/lib.rs", + "vendor/num-bigint-dig-0.8.4/src/macro.rs", + "vendor/num-bigint-dig-0.8.4/src/macros.rs", + "vendor/num-bigint-dig-0.8.4/src/monty.rs", + "vendor/num-bigint-dig-0.8.4/src/prime.rs", + "vendor/num-bigint-dig-0.8.4/src/traits.rs", + ], + crate = "num_bigint_dig", + crate_root = "vendor/num-bigint-dig-0.8.4/src/lib.rs", + edition = "2021", + features = [ + "i128", + "prime", + "rand", + "u64_digit", + "zeroize", + ], + visibility = [], + deps = [ + ":byteorder-1.5.0", + ":lazy_static-1.5.0", + ":libm-0.2.8", + ":num-integer-0.1.46", + ":num-iter-0.1.45", + ":num-traits-0.2.19", + ":rand-0.8.5", + ":smallvec-1.13.2", + ":zeroize-1.8.1", + ], +) + cargo.rust_library( name = "num-conv-0.1.0", srcs = ["vendor/num-conv-0.1.0/src/lib.rs"], @@ -8146,6 +14171,37 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "num-integer-0.1.46", + srcs = [ + "vendor/num-integer-0.1.46/src/average.rs", + "vendor/num-integer-0.1.46/src/lib.rs", + "vendor/num-integer-0.1.46/src/roots.rs", + ], + crate = "num_integer", + crate_root = "vendor/num-integer-0.1.46/src/lib.rs", + edition = "2018", + features = [ + "i128", + "std", + ], + visibility = [], + deps = [":num-traits-0.2.19"], +) + +cargo.rust_library( + name = "num-iter-0.1.45", + srcs = ["vendor/num-iter-0.1.45/src/lib.rs"], + crate = "num_iter", + crate_root = "vendor/num-iter-0.1.45/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":num-integer-0.1.46", + ":num-traits-0.2.19", + ], +) + cargo.rust_library( name = "num-traits-0.2.19", srcs = [ @@ -8173,6 +14229,7 @@ cargo.rust_library( crate_root = "vendor/num-traits-0.2.19/src/lib.rs", edition = "2021", features = [ + "default", "i128", "libm", "std", @@ -8181,6 +14238,38 @@ cargo.rust_library( deps = [":libm-0.2.8"], ) +alias( + name = "num_cpus", + actual = ":num_cpus-1.16.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "num_cpus-1.16.0", + srcs = [ + "vendor/num_cpus-1.16.0/src/lib.rs", + "vendor/num_cpus-1.16.0/src/linux.rs", + ], + crate = "num_cpus", + crate_root = "vendor/num_cpus-1.16.0/src/lib.rs", + edition = "2015", + platform = { + "linux-arm64": dict( + deps = [":libc-0.2.169"], + ), + "linux-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "macos-arm64": dict( + deps = [":libc-0.2.169"], + ), + "macos-x86_64": dict( + deps = [":libc-0.2.169"], + ), + }, + visibility = [], +) + cargo.rust_library( name = "num_threads-0.1.7", srcs = [ @@ -8205,6 +14294,57 @@ cargo.rust_library( visibility = [], ) +alias( + name = "oauth2", + actual = ":oauth2-5.0.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "oauth2-5.0.0", + srcs = [ + "vendor/oauth2-5.0.0/src/basic.rs", + "vendor/oauth2-5.0.0/src/client.rs", + "vendor/oauth2-5.0.0/src/code.rs", + "vendor/oauth2-5.0.0/src/curl_client.rs", + "vendor/oauth2-5.0.0/src/devicecode.rs", + "vendor/oauth2-5.0.0/src/endpoint.rs", + "vendor/oauth2-5.0.0/src/error.rs", + "vendor/oauth2-5.0.0/src/helpers.rs", + "vendor/oauth2-5.0.0/src/introspection.rs", + "vendor/oauth2-5.0.0/src/lib.rs", + "vendor/oauth2-5.0.0/src/reqwest_client.rs", + "vendor/oauth2-5.0.0/src/revocation.rs", + "vendor/oauth2-5.0.0/src/tests.rs", + "vendor/oauth2-5.0.0/src/token/mod.rs", + "vendor/oauth2-5.0.0/src/token/tests.rs", + "vendor/oauth2-5.0.0/src/types.rs", + "vendor/oauth2-5.0.0/src/ureq_client.rs", + ], + crate = "oauth2", + crate_root = "vendor/oauth2-5.0.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "reqwest", + "rustls-tls", + ], + visibility = [], + deps = [ + ":base64-0.22.1", + ":chrono-0.4.39", + ":http-1.1.0", + ":rand-0.8.5", + ":reqwest-0.12.12", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":serde_path_to_error-0.1.16", + ":sha2-0.10.8", + ":thiserror-1.0.65", + ":url-2.5.3", + ], +) + cargo.rust_library( name = "once_cell-1.20.3", srcs = [ @@ -8226,6 +14366,15 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "opaque-debug-0.3.1", + srcs = ["vendor/opaque-debug-0.3.1/src/lib.rs"], + crate = "opaque_debug", + crate_root = "vendor/opaque-debug-0.3.1/src/lib.rs", + edition = "2018", + visibility = [], +) + alias( name = "openssl", actual = ":openssl-0.10.71", @@ -8534,16 +14683,287 @@ cargo.rust_binary( ], ) -buildscript_run( - name = "openssl-sys-0.9.106-build-script-main-run", - package_name = "openssl-sys", - buildscript_rule = ":openssl-sys-0.9.106-build-script-main", - env = { - "OPENSSL_INCLUDE_DIR": "/opt/openssl-1.1.1g/include", - "OPENSSL_LIB_DIR": "/opt/openssl-1.1.1g/lib", - "OPT_LEVEL": "3", +buildscript_run( + name = "openssl-sys-0.9.106-build-script-main-run", + package_name = "openssl-sys", + buildscript_rule = ":openssl-sys-0.9.106-build-script-main", + env = { + "OPENSSL_INCLUDE_DIR": "/usr/include", + "OPENSSL_LIB_DIR": "/usr/lib64", + "OPT_LEVEL": "3", + }, + version = "0.9.106", +) + +cargo.rust_library( + name = "ordered-float-3.9.2", + srcs = ["vendor/ordered-float-3.9.2/src/lib.rs"], + crate = "ordered_float", + crate_root = "vendor/ordered-float-3.9.2/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":num-traits-0.2.19"], +) + +cargo.rust_library( + name = "ordered-multimap-0.7.3", + srcs = [ + "vendor/ordered-multimap-0.7.3/src/lib.rs", + "vendor/ordered-multimap-0.7.3/src/list_ordered_multimap.rs", + "vendor/ordered-multimap-0.7.3/src/serde.rs", + ], + crate = "ordered_multimap", + crate_root = "vendor/ordered-multimap-0.7.3/src/lib.rs", + edition = "2021", + features = [ + "default", + "std", + ], + visibility = [], + deps = [ + ":dlv-list-0.5.2", + ":hashbrown-0.14.5", + ], +) + +cargo.rust_library( + name = "ouroboros-0.18.4", + srcs = ["vendor/ouroboros-0.18.4/src/lib.rs"], + crate = "ouroboros", + crate_root = "vendor/ouroboros-0.18.4/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":aliasable-0.1.3", + ":ouroboros_macro-0.18.4", + ":static_assertions-1.1.0", + ], +) + +cargo.rust_library( + name = "ouroboros_macro-0.18.4", + srcs = [ + "vendor/ouroboros_macro-0.18.4/src/covariance_detection.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/constructor.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/derives.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/drop.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/into_heads.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/mod.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/struc.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/summon_checker.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/try_constructor.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/type_asserts.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/with.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/with_each.rs", + "vendor/ouroboros_macro-0.18.4/src/generate/with_mut.rs", + "vendor/ouroboros_macro-0.18.4/src/info_structures.rs", + "vendor/ouroboros_macro-0.18.4/src/lib.rs", + "vendor/ouroboros_macro-0.18.4/src/parse.rs", + "vendor/ouroboros_macro-0.18.4/src/utils.rs", + ], + crate = "ouroboros_macro", + crate_root = "vendor/ouroboros_macro-0.18.4/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":heck-0.4.1", + ":itertools-0.12.1", + ":proc-macro2-1.0.86", + ":proc-macro2-diagnostics-0.10.1", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "overload-0.1.1", + srcs = [ + "vendor/overload-0.1.1/src/assignment.rs", + "vendor/overload-0.1.1/src/binary.rs", + "vendor/overload-0.1.1/src/lib.rs", + "vendor/overload-0.1.1/src/unary.rs", + ], + crate = "overload", + crate_root = "vendor/overload-0.1.1/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "p256-0.13.2", + srcs = [ + "vendor/p256-0.13.2/README.md", + "vendor/p256-0.13.2/src/arithmetic.rs", + "vendor/p256-0.13.2/src/arithmetic/field.rs", + "vendor/p256-0.13.2/src/arithmetic/field/field32.rs", + "vendor/p256-0.13.2/src/arithmetic/field/field64.rs", + "vendor/p256-0.13.2/src/arithmetic/hash2curve.rs", + "vendor/p256-0.13.2/src/arithmetic/scalar.rs", + "vendor/p256-0.13.2/src/arithmetic/scalar/scalar32.rs", + "vendor/p256-0.13.2/src/arithmetic/scalar/scalar64.rs", + "vendor/p256-0.13.2/src/arithmetic/util.rs", + "vendor/p256-0.13.2/src/ecdh.rs", + "vendor/p256-0.13.2/src/ecdsa.rs", + "vendor/p256-0.13.2/src/lib.rs", + "vendor/p256-0.13.2/src/test_vectors.rs", + "vendor/p256-0.13.2/src/test_vectors/ecdsa.rs", + "vendor/p256-0.13.2/src/test_vectors/field.rs", + "vendor/p256-0.13.2/src/test_vectors/group.rs", + ], + crate = "p256", + crate_root = "vendor/p256-0.13.2/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "arithmetic", + "default", + "digest", + "ecdh", + "ecdsa", + "ecdsa-core", + "pem", + "pkcs8", + "sha2", + "sha256", + "std", + ], + named_deps = { + "ecdsa_core": ":ecdsa-0.16.9", + }, + visibility = [], + deps = [ + ":elliptic-curve-0.13.8", + ":primeorder-0.13.6", + ":sha2-0.10.8", + ], +) + +cargo.rust_library( + name = "p384-0.13.0", + srcs = [ + "vendor/p384-0.13.0/README.md", + "vendor/p384-0.13.0/src/arithmetic.rs", + "vendor/p384-0.13.0/src/arithmetic/field.rs", + "vendor/p384-0.13.0/src/arithmetic/field/p384_32.rs", + "vendor/p384-0.13.0/src/arithmetic/field/p384_64.rs", + "vendor/p384-0.13.0/src/arithmetic/hash2curve.rs", + "vendor/p384-0.13.0/src/arithmetic/macros.rs", + "vendor/p384-0.13.0/src/arithmetic/scalar.rs", + "vendor/p384-0.13.0/src/arithmetic/scalar/p384_scalar_32.rs", + "vendor/p384-0.13.0/src/arithmetic/scalar/p384_scalar_64.rs", + "vendor/p384-0.13.0/src/ecdh.rs", + "vendor/p384-0.13.0/src/ecdsa.rs", + "vendor/p384-0.13.0/src/lib.rs", + "vendor/p384-0.13.0/src/test_vectors.rs", + "vendor/p384-0.13.0/src/test_vectors/ecdsa.rs", + "vendor/p384-0.13.0/src/test_vectors/group.rs", + ], + crate = "p384", + crate_root = "vendor/p384-0.13.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "arithmetic", + "default", + "digest", + "ecdh", + "ecdsa", + "ecdsa-core", + "pem", + "pkcs8", + "sha2", + "sha384", + "std", + ], + named_deps = { + "ecdsa_core": ":ecdsa-0.16.9", + }, + visibility = [], + deps = [ + ":elliptic-curve-0.13.8", + ":primeorder-0.13.6", + ":sha2-0.10.8", + ], +) + +cargo.rust_library( + name = "p521-0.13.3", + srcs = [ + "vendor/p521-0.13.3/README.md", + "vendor/p521-0.13.3/src/arithmetic.rs", + "vendor/p521-0.13.3/src/arithmetic/field.rs", + "vendor/p521-0.13.3/src/arithmetic/field/loose.rs", + "vendor/p521-0.13.3/src/arithmetic/field/p521_64.rs", + "vendor/p521-0.13.3/src/arithmetic/hash2curve.rs", + "vendor/p521-0.13.3/src/arithmetic/scalar.rs", + "vendor/p521-0.13.3/src/arithmetic/scalar/p521_scalar_64.rs", + "vendor/p521-0.13.3/src/arithmetic/util.rs", + "vendor/p521-0.13.3/src/ecdh.rs", + "vendor/p521-0.13.3/src/ecdsa.rs", + "vendor/p521-0.13.3/src/lib.rs", + "vendor/p521-0.13.3/src/test_vectors.rs", + "vendor/p521-0.13.3/src/test_vectors/ecdsa.rs", + "vendor/p521-0.13.3/src/test_vectors/group.rs", + ], + crate = "p521", + crate_root = "vendor/p521-0.13.3/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "arithmetic", + "default", + "digest", + "ecdh", + "ecdsa", + "ecdsa-core", + "getrandom", + "pem", + "pkcs8", + "rand_core", + "sha512", + "std", + ], + named_deps = { + "ecdsa_core": ":ecdsa-0.16.9", + }, + visibility = [], + deps = [ + ":base16ct-0.2.0", + ":elliptic-curve-0.13.8", + ":primeorder-0.13.6", + ":rand_core-0.6.4", + ":sha2-0.10.8", + ], +) + +cargo.rust_library( + name = "pageant-0.0.2", + srcs = [ + "vendor/pageant-0.0.2/src/lib.rs", + "vendor/pageant-0.0.2/src/pageant_impl.rs", + ], + crate = "pageant", + crate_root = "vendor/pageant-0.0.2/src/lib.rs", + edition = "2018", + platform = { + "windows-gnu": dict( + deps = [":windows-0.58.0"], + ), + "windows-msvc": dict( + deps = [":windows-0.58.0"], + ), }, - version = "0.9.106", + visibility = [], + deps = [ + ":bytes-1.10.0", + ":delegate-0.13.1", + ":futures-0.3.31", + ":log-0.4.22", + ":rand-0.8.5", + ":thiserror-1.0.65", + ":tokio-1.43.0", + ], ) cargo.rust_library( @@ -8634,6 +15054,36 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "password-hash-0.5.0", + srcs = [ + "vendor/password-hash-0.5.0/README.md", + "vendor/password-hash-0.5.0/src/encoding.rs", + "vendor/password-hash-0.5.0/src/errors.rs", + "vendor/password-hash-0.5.0/src/ident.rs", + "vendor/password-hash-0.5.0/src/lib.rs", + "vendor/password-hash-0.5.0/src/output.rs", + "vendor/password-hash-0.5.0/src/params.rs", + "vendor/password-hash-0.5.0/src/salt.rs", + "vendor/password-hash-0.5.0/src/traits.rs", + "vendor/password-hash-0.5.0/src/value.rs", + ], + crate = "password_hash", + crate_root = "vendor/password-hash-0.5.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "rand_core", + ], + visibility = [], + deps = [ + ":base64ct-1.6.0", + ":rand_core-0.6.4", + ":subtle-2.6.1", + ], +) + cargo.rust_library( name = "paste-1.0.15", srcs = [ @@ -8649,6 +15099,35 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "pathdiff-0.2.1", + srcs = ["vendor/pathdiff-0.2.1/src/lib.rs"], + crate = "pathdiff", + crate_root = "vendor/pathdiff-0.2.1/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "pbkdf2-0.12.2", + srcs = [ + "vendor/pbkdf2-0.12.2/src/lib.rs", + "vendor/pbkdf2-0.12.2/src/simple.rs", + ], + crate = "pbkdf2", + crate_root = "vendor/pbkdf2-0.12.2/src/lib.rs", + edition = "2021", + features = [ + "default", + "hmac", + ], + visibility = [], + deps = [ + ":digest-0.10.7", + ":hmac-0.12.1", + ], +) + cargo.rust_library( name = "pem-3.0.4", srcs = [ @@ -8670,6 +15149,27 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "pem-rfc7468-0.7.0", + srcs = [ + "vendor/pem-rfc7468-0.7.0/README.md", + "vendor/pem-rfc7468-0.7.0/src/decoder.rs", + "vendor/pem-rfc7468-0.7.0/src/encoder.rs", + "vendor/pem-rfc7468-0.7.0/src/error.rs", + "vendor/pem-rfc7468-0.7.0/src/grammar.rs", + "vendor/pem-rfc7468-0.7.0/src/lib.rs", + ], + crate = "pem_rfc7468", + crate_root = "vendor/pem-rfc7468-0.7.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "std", + ], + visibility = [], + deps = [":base64ct-1.6.0"], +) + cargo.rust_library( name = "percent-encoding-2.3.1", srcs = ["vendor/percent-encoding-2.3.1/src/lib.rs"], @@ -8684,6 +15184,233 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "pest-2.7.11", + srcs = [ + "vendor/pest-2.7.11/src/error.rs", + "vendor/pest-2.7.11/src/iterators/flat_pairs.rs", + "vendor/pest-2.7.11/src/iterators/line_index.rs", + "vendor/pest-2.7.11/src/iterators/mod.rs", + "vendor/pest-2.7.11/src/iterators/pair.rs", + "vendor/pest-2.7.11/src/iterators/pairs.rs", + "vendor/pest-2.7.11/src/iterators/queueable_token.rs", + "vendor/pest-2.7.11/src/iterators/tokens.rs", + "vendor/pest-2.7.11/src/lib.rs", + "vendor/pest-2.7.11/src/macros.rs", + "vendor/pest-2.7.11/src/parser.rs", + "vendor/pest-2.7.11/src/parser_state.rs", + "vendor/pest-2.7.11/src/position.rs", + "vendor/pest-2.7.11/src/pratt_parser.rs", + "vendor/pest-2.7.11/src/prec_climber.rs", + "vendor/pest-2.7.11/src/span.rs", + "vendor/pest-2.7.11/src/stack.rs", + "vendor/pest-2.7.11/src/token.rs", + "vendor/pest-2.7.11/src/unicode/binary.rs", + "vendor/pest-2.7.11/src/unicode/category.rs", + "vendor/pest-2.7.11/src/unicode/mod.rs", + "vendor/pest-2.7.11/src/unicode/script.rs", + ], + crate = "pest", + crate_root = "vendor/pest-2.7.11/src/lib.rs", + edition = "2021", + features = [ + "default", + "memchr", + "std", + ], + visibility = [], + deps = [ + ":memchr-2.7.4", + ":thiserror-1.0.65", + ":ucd-trie-0.1.6", + ], +) + +cargo.rust_library( + name = "pest_derive-2.7.11", + srcs = ["vendor/pest_derive-2.7.11/src/lib.rs"], + crate = "pest_derive", + crate_root = "vendor/pest_derive-2.7.11/src/lib.rs", + edition = "2021", + features = [ + "default", + "std", + ], + proc_macro = True, + visibility = [], + deps = [ + ":pest-2.7.11", + ":pest_generator-2.7.11", + ], +) + +cargo.rust_library( + name = "pest_generator-2.7.11", + srcs = [ + "vendor/pest_generator-2.7.11/src/docs.rs", + "vendor/pest_generator-2.7.11/src/generator.rs", + "vendor/pest_generator-2.7.11/src/lib.rs", + "vendor/pest_generator-2.7.11/src/macros.rs", + "vendor/pest_generator-2.7.11/src/parse_derive.rs", + ], + crate = "pest_generator", + crate_root = "vendor/pest_generator-2.7.11/src/lib.rs", + edition = "2021", + features = ["std"], + visibility = [], + deps = [ + ":pest-2.7.11", + ":pest_meta-2.7.11", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "pest_meta-2.7.11", + srcs = [ + "vendor/pest_meta-2.7.11/src/ast.rs", + "vendor/pest_meta-2.7.11/src/grammar.rs", + "vendor/pest_meta-2.7.11/src/lib.rs", + "vendor/pest_meta-2.7.11/src/optimizer/concatenator.rs", + "vendor/pest_meta-2.7.11/src/optimizer/factorizer.rs", + "vendor/pest_meta-2.7.11/src/optimizer/lister.rs", + "vendor/pest_meta-2.7.11/src/optimizer/mod.rs", + "vendor/pest_meta-2.7.11/src/optimizer/restorer.rs", + "vendor/pest_meta-2.7.11/src/optimizer/rotater.rs", + "vendor/pest_meta-2.7.11/src/optimizer/skipper.rs", + "vendor/pest_meta-2.7.11/src/optimizer/unroller.rs", + "vendor/pest_meta-2.7.11/src/parser.rs", + "vendor/pest_meta-2.7.11/src/validator.rs", + ], + crate = "pest_meta", + crate_root = "vendor/pest_meta-2.7.11/src/lib.rs", + edition = "2021", + features = ["default"], + visibility = [], + deps = [ + ":once_cell-1.20.3", + ":pest-2.7.11", + ], +) + +cargo.rust_library( + name = "petgraph-0.6.5", + srcs = [ + "vendor/petgraph-0.6.5/src/adj.rs", + "vendor/petgraph-0.6.5/src/algo/astar.rs", + "vendor/petgraph-0.6.5/src/algo/bellman_ford.rs", + "vendor/petgraph-0.6.5/src/algo/dijkstra.rs", + "vendor/petgraph-0.6.5/src/algo/dominators.rs", + "vendor/petgraph-0.6.5/src/algo/feedback_arc_set.rs", + "vendor/petgraph-0.6.5/src/algo/floyd_warshall.rs", + "vendor/petgraph-0.6.5/src/algo/ford_fulkerson.rs", + "vendor/petgraph-0.6.5/src/algo/isomorphism.rs", + "vendor/petgraph-0.6.5/src/algo/k_shortest_path.rs", + "vendor/petgraph-0.6.5/src/algo/matching.rs", + "vendor/petgraph-0.6.5/src/algo/min_spanning_tree.rs", + "vendor/petgraph-0.6.5/src/algo/mod.rs", + "vendor/petgraph-0.6.5/src/algo/page_rank.rs", + "vendor/petgraph-0.6.5/src/algo/simple_paths.rs", + "vendor/petgraph-0.6.5/src/algo/tred.rs", + "vendor/petgraph-0.6.5/src/csr.rs", + "vendor/petgraph-0.6.5/src/data.rs", + "vendor/petgraph-0.6.5/src/dot.rs", + "vendor/petgraph-0.6.5/src/generate.rs", + "vendor/petgraph-0.6.5/src/graph_impl/frozen.rs", + "vendor/petgraph-0.6.5/src/graph_impl/mod.rs", + "vendor/petgraph-0.6.5/src/graph_impl/serialization.rs", + "vendor/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs", + "vendor/petgraph-0.6.5/src/graph_impl/stable_graph/serialization.rs", + "vendor/petgraph-0.6.5/src/graphmap.rs", + "vendor/petgraph-0.6.5/src/iter_format.rs", + "vendor/petgraph-0.6.5/src/iter_utils.rs", + "vendor/petgraph-0.6.5/src/lib.rs", + "vendor/petgraph-0.6.5/src/macros.rs", + "vendor/petgraph-0.6.5/src/matrix_graph.rs", + "vendor/petgraph-0.6.5/src/operator.rs", + "vendor/petgraph-0.6.5/src/prelude.rs", + "vendor/petgraph-0.6.5/src/quickcheck.rs", + "vendor/petgraph-0.6.5/src/scored.rs", + "vendor/petgraph-0.6.5/src/serde_utils.rs", + "vendor/petgraph-0.6.5/src/traits_graph.rs", + "vendor/petgraph-0.6.5/src/unionfind.rs", + "vendor/petgraph-0.6.5/src/util.rs", + "vendor/petgraph-0.6.5/src/visit/dfsvisit.rs", + "vendor/petgraph-0.6.5/src/visit/filter.rs", + "vendor/petgraph-0.6.5/src/visit/macros.rs", + "vendor/petgraph-0.6.5/src/visit/mod.rs", + "vendor/petgraph-0.6.5/src/visit/reversed.rs", + "vendor/petgraph-0.6.5/src/visit/traversal.rs", + ], + crate = "petgraph", + crate_root = "vendor/petgraph-0.6.5/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":fixedbitset-0.4.2", + ":indexmap-2.4.0", + ], +) + +cargo.rust_library( + name = "phf_shared-0.10.0", + srcs = ["vendor/phf_shared-0.10.0/src/lib.rs"], + crate = "phf_shared", + crate_root = "vendor/phf_shared-0.10.0/src/lib.rs", + edition = "2018", + features = [ + "default", + "std", + ], + visibility = [], + deps = [":siphasher-0.3.11"], +) + +cargo.rust_library( + name = "pico-args-0.5.0", + srcs = ["vendor/pico-args-0.5.0/src/lib.rs"], + crate = "pico_args", + crate_root = "vendor/pico-args-0.5.0/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "pin-project-1.1.5", + srcs = ["vendor/pin-project-1.1.5/src/lib.rs"], + crate = "pin_project", + crate_root = "vendor/pin-project-1.1.5/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":pin-project-internal-1.1.5"], +) + +cargo.rust_library( + name = "pin-project-internal-1.1.5", + srcs = [ + "vendor/pin-project-internal-1.1.5/src/error.rs", + "vendor/pin-project-internal-1.1.5/src/lib.rs", + "vendor/pin-project-internal-1.1.5/src/pin_project/args.rs", + "vendor/pin-project-internal-1.1.5/src/pin_project/attribute.rs", + "vendor/pin-project-internal-1.1.5/src/pin_project/derive.rs", + "vendor/pin-project-internal-1.1.5/src/pin_project/mod.rs", + "vendor/pin-project-internal-1.1.5/src/pinned_drop.rs", + "vendor/pin-project-internal-1.1.5/src/utils.rs", + ], + crate = "pin_project_internal", + crate_root = "vendor/pin-project-internal-1.1.5/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "pin-project-lite-0.2.14", srcs = ["vendor/pin-project-lite-0.2.14/src/lib.rs"], @@ -8725,6 +15452,98 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "pkcs1-0.7.5", + srcs = [ + "vendor/pkcs1-0.7.5/README.md", + "vendor/pkcs1-0.7.5/src/error.rs", + "vendor/pkcs1-0.7.5/src/lib.rs", + "vendor/pkcs1-0.7.5/src/params.rs", + "vendor/pkcs1-0.7.5/src/private_key.rs", + "vendor/pkcs1-0.7.5/src/private_key/other_prime_info.rs", + "vendor/pkcs1-0.7.5/src/public_key.rs", + "vendor/pkcs1-0.7.5/src/traits.rs", + "vendor/pkcs1-0.7.5/src/version.rs", + ], + crate = "pkcs1", + crate_root = "vendor/pkcs1-0.7.5/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "pem", + "pkcs8", + "std", + "zeroize", + ], + visibility = [], + deps = [ + ":der-0.7.9", + ":pkcs8-0.10.2", + ":spki-0.7.3", + ], +) + +cargo.rust_library( + name = "pkcs5-0.7.1", + srcs = [ + "vendor/pkcs5-0.7.1/README.md", + "vendor/pkcs5-0.7.1/src/error.rs", + "vendor/pkcs5-0.7.1/src/lib.rs", + "vendor/pkcs5-0.7.1/src/pbes1.rs", + "vendor/pkcs5-0.7.1/src/pbes2.rs", + "vendor/pkcs5-0.7.1/src/pbes2/encryption.rs", + "vendor/pkcs5-0.7.1/src/pbes2/kdf.rs", + ], + crate = "pkcs5", + crate_root = "vendor/pkcs5-0.7.1/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "pbes2", + ], + visibility = [], + deps = [ + ":aes-0.8.4", + ":cbc-0.1.2", + ":der-0.7.9", + ":pbkdf2-0.12.2", + ":scrypt-0.11.0", + ":sha2-0.10.8", + ":spki-0.7.3", + ], +) + +cargo.rust_library( + name = "pkcs8-0.10.2", + srcs = [ + "vendor/pkcs8-0.10.2/README.md", + "vendor/pkcs8-0.10.2/src/encrypted_private_key_info.rs", + "vendor/pkcs8-0.10.2/src/error.rs", + "vendor/pkcs8-0.10.2/src/lib.rs", + "vendor/pkcs8-0.10.2/src/private_key_info.rs", + "vendor/pkcs8-0.10.2/src/traits.rs", + "vendor/pkcs8-0.10.2/src/version.rs", + ], + crate = "pkcs8", + crate_root = "vendor/pkcs8-0.10.2/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "encryption", + "pem", + "pkcs5", + "rand_core", + "std", + ], + visibility = [], + deps = [ + ":der-0.7.9", + ":pkcs5-0.7.1", + ":rand_core-0.6.4", + ":spki-0.7.3", + ], +) + cargo.rust_library( name = "pkg-config-0.3.30", srcs = ["vendor/pkg-config-0.3.30/src/lib.rs"], @@ -8846,6 +15665,84 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "poly1305-0.8.0", + srcs = [ + "vendor/poly1305-0.8.0/src/backend.rs", + "vendor/poly1305-0.8.0/src/backend/autodetect.rs", + "vendor/poly1305-0.8.0/src/backend/avx2.rs", + "vendor/poly1305-0.8.0/src/backend/avx2/helpers.rs", + "vendor/poly1305-0.8.0/src/backend/soft.rs", + "vendor/poly1305-0.8.0/src/fuzz.rs", + "vendor/poly1305-0.8.0/src/lib.rs", + ], + crate = "poly1305", + crate_root = "vendor/poly1305-0.8.0/src/lib.rs", + edition = "2021", + platform = { + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":opaque-debug-0.3.1", + ":universal-hash-0.5.1", + ], +) + +cargo.rust_library( + name = "polyval-0.6.2", + srcs = [ + "vendor/polyval-0.6.2/src/backend.rs", + "vendor/polyval-0.6.2/src/backend/autodetect.rs", + "vendor/polyval-0.6.2/src/backend/clmul.rs", + "vendor/polyval-0.6.2/src/backend/pmull.rs", + "vendor/polyval-0.6.2/src/backend/soft32.rs", + "vendor/polyval-0.6.2/src/backend/soft64.rs", + "vendor/polyval-0.6.2/src/lib.rs", + "vendor/polyval-0.6.2/src/mulx.rs", + ], + crate = "polyval", + crate_root = "vendor/polyval-0.6.2/src/lib.rs", + edition = "2021", + platform = { + "linux-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":opaque-debug-0.3.1", + ":universal-hash-0.5.1", + ], +) + cargo.rust_library( name = "powerfmt-0.2.0", srcs = [ @@ -8879,7 +15776,16 @@ cargo.rust_library( "std", ], visibility = [], - deps = [":zerocopy-0.7.35"], + deps = [":zerocopy-0.7.35"], +) + +cargo.rust_library( + name = "precomputed-hash-0.1.1", + srcs = ["vendor/precomputed-hash-0.1.1/src/lib.rs"], + crate = "precomputed_hash", + crate_root = "vendor/precomputed-hash-0.1.1/src/lib.rs", + edition = "2015", + visibility = [], ) cargo.rust_library( @@ -8948,6 +15854,24 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "pretty-0.12.3", + srcs = [ + "vendor/pretty-0.12.3/src/block.rs", + "vendor/pretty-0.12.3/src/lib.rs", + "vendor/pretty-0.12.3/src/render.rs", + ], + crate = "pretty", + crate_root = "vendor/pretty-0.12.3/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":arrayvec-0.5.2", + ":typed-arena-2.0.2", + ":unicode-width-0.1.13", + ], +) + cargo.rust_library( name = "prettyplease-0.2.20", srcs = [ @@ -9013,6 +15937,135 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "primeorder-0.13.6", + srcs = [ + "vendor/primeorder-0.13.6/README.md", + "vendor/primeorder-0.13.6/src/affine.rs", + "vendor/primeorder-0.13.6/src/dev.rs", + "vendor/primeorder-0.13.6/src/field.rs", + "vendor/primeorder-0.13.6/src/lib.rs", + "vendor/primeorder-0.13.6/src/point_arithmetic.rs", + "vendor/primeorder-0.13.6/src/projective.rs", + ], + crate = "primeorder", + crate_root = "vendor/primeorder-0.13.6/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":elliptic-curve-0.13.8"], +) + +cargo.rust_library( + name = "proc-macro-crate-3.2.0", + srcs = ["vendor/proc-macro-crate-3.2.0/src/lib.rs"], + crate = "proc_macro_crate", + crate_root = "vendor/proc-macro-crate-3.2.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":toml_edit-0.22.20"], +) + +cargo.rust_library( + name = "proc-macro-error-1.0.4", + srcs = [ + "vendor/proc-macro-error-1.0.4/src/diagnostic.rs", + "vendor/proc-macro-error-1.0.4/src/dummy.rs", + "vendor/proc-macro-error-1.0.4/src/imp/delegate.rs", + "vendor/proc-macro-error-1.0.4/src/imp/fallback.rs", + "vendor/proc-macro-error-1.0.4/src/lib.rs", + "vendor/proc-macro-error-1.0.4/src/macros.rs", + "vendor/proc-macro-error-1.0.4/src/sealed.rs", + ], + crate = "proc_macro_error", + crate_root = "vendor/proc-macro-error-1.0.4/src/lib.rs", + edition = "2018", + features = [ + "default", + "syn", + "syn-error", + ], + rustc_flags = ["@$(location :proc-macro-error-1.0.4-build-script-run[rustc_flags])"], + visibility = [], + deps = [ + ":proc-macro-error-attr-1.0.4", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-1.0.109", + ], +) + +cargo.rust_binary( + name = "proc-macro-error-1.0.4-build-script-build", + srcs = [ + "vendor/proc-macro-error-1.0.4/build.rs", + "vendor/proc-macro-error-1.0.4/src/diagnostic.rs", + "vendor/proc-macro-error-1.0.4/src/dummy.rs", + "vendor/proc-macro-error-1.0.4/src/imp/delegate.rs", + "vendor/proc-macro-error-1.0.4/src/imp/fallback.rs", + "vendor/proc-macro-error-1.0.4/src/lib.rs", + "vendor/proc-macro-error-1.0.4/src/macros.rs", + "vendor/proc-macro-error-1.0.4/src/sealed.rs", + "vendor/proc-macro-error-1.0.4/tests/macro-errors.rs", + "vendor/proc-macro-error-1.0.4/tests/ok.rs", + "vendor/proc-macro-error-1.0.4/tests/runtime-errors.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/abort.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/append_dummy.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/children_messages.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/dummy.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/emit.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/explicit_span_range.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/misuse.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/multiple_tokens.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/not_proc_macro.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/option_ext.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/proc_macro_hack.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/result_ext.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/to_tokens_span.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/unknown_setting.rs", + "vendor/proc-macro-error-1.0.4/tests/ui/unrelated_panic.rs", + ], + crate = "build_script_build", + crate_root = "vendor/proc-macro-error-1.0.4/build.rs", + edition = "2018", + features = [ + "default", + "syn", + "syn-error", + ], + visibility = [], + deps = [":version_check-0.9.5"], +) + +buildscript_run( + name = "proc-macro-error-1.0.4-build-script-run", + package_name = "proc-macro-error", + buildscript_rule = ":proc-macro-error-1.0.4-build-script-build", + features = [ + "default", + "syn", + "syn-error", + ], + version = "1.0.4", +) + +cargo.rust_library( + name = "proc-macro-error-attr-1.0.4", + srcs = [ + "vendor/proc-macro-error-attr-1.0.4/src/lib.rs", + "vendor/proc-macro-error-attr-1.0.4/src/parse.rs", + "vendor/proc-macro-error-attr-1.0.4/src/settings.rs", + ], + crate = "proc_macro_error_attr", + crate_root = "vendor/proc-macro-error-attr-1.0.4/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ], +) + cargo.rust_library( name = "proc-macro2-1.0.86", srcs = [ @@ -9033,10 +16086,78 @@ cargo.rust_library( "default", "proc-macro", ], + rustc_flags = ["@$(location :proc-macro2-1.0.86-build-script-run[rustc_flags])"], visibility = [], deps = [":unicode-ident-1.0.12"], ) +cargo.rust_binary( + name = "proc-macro2-1.0.86-build-script-build", + srcs = [ + "vendor/proc-macro2-1.0.86/build.rs", + "vendor/proc-macro2-1.0.86/build/probe.rs", + "vendor/proc-macro2-1.0.86/src/detection.rs", + "vendor/proc-macro2-1.0.86/src/extra.rs", + "vendor/proc-macro2-1.0.86/src/fallback.rs", + "vendor/proc-macro2-1.0.86/src/lib.rs", + "vendor/proc-macro2-1.0.86/src/location.rs", + "vendor/proc-macro2-1.0.86/src/marker.rs", + "vendor/proc-macro2-1.0.86/src/parse.rs", + "vendor/proc-macro2-1.0.86/src/rcvec.rs", + "vendor/proc-macro2-1.0.86/src/wrapper.rs", + "vendor/proc-macro2-1.0.86/tests/comments.rs", + "vendor/proc-macro2-1.0.86/tests/features.rs", + "vendor/proc-macro2-1.0.86/tests/marker.rs", + "vendor/proc-macro2-1.0.86/tests/test.rs", + "vendor/proc-macro2-1.0.86/tests/test_fmt.rs", + "vendor/proc-macro2-1.0.86/tests/test_size.rs", + ], + crate = "build_script_build", + crate_root = "vendor/proc-macro2-1.0.86/build.rs", + edition = "2021", + features = [ + "default", + "proc-macro", + ], + visibility = [], +) + +buildscript_run( + name = "proc-macro2-1.0.86-build-script-run", + package_name = "proc-macro2", + buildscript_rule = ":proc-macro2-1.0.86-build-script-build", + features = [ + "default", + "proc-macro", + ], + version = "1.0.86", +) + +cargo.rust_library( + name = "proc-macro2-diagnostics-0.10.1", + srcs = [ + "vendor/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs", + "vendor/proc-macro2-diagnostics-0.10.1/src/ext.rs", + "vendor/proc-macro2-diagnostics-0.10.1/src/lib.rs", + "vendor/proc-macro2-diagnostics-0.10.1/src/line.rs", + ], + crate = "proc_macro2_diagnostics", + crate_root = "vendor/proc-macro2-diagnostics-0.10.1/src/lib.rs", + edition = "2018", + features = [ + "colors", + "default", + "yansi", + ], + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ":yansi-1.0.1", + ], +) + cargo.rust_library( name = "prometheus-client-0.22.3", srcs = [ @@ -9082,6 +16203,44 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "psm-0.1.21", + srcs = ["vendor/psm-0.1.21/src/lib.rs"], + crate = "psm", + crate_root = "vendor/psm-0.1.21/src/lib.rs", + edition = "2015", + visibility = [], +) + +cargo.rust_library( + name = "ptr_meta-0.1.4", + srcs = [ + "vendor/ptr_meta-0.1.4/src/impls.rs", + "vendor/ptr_meta-0.1.4/src/lib.rs", + ], + crate = "ptr_meta", + crate_root = "vendor/ptr_meta-0.1.4/src/lib.rs", + edition = "2018", + features = ["std"], + visibility = [], + deps = [":ptr_meta_derive-0.1.4"], +) + +cargo.rust_library( + name = "ptr_meta_derive-0.1.4", + srcs = ["vendor/ptr_meta_derive-0.1.4/src/lib.rs"], + crate = "ptr_meta_derive", + crate_root = "vendor/ptr_meta_derive-0.1.4/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-1.0.109", + ], +) + cargo.rust_library( name = "quinn-0.11.3", srcs = [ @@ -9102,6 +16261,9 @@ cargo.rust_library( crate_root = "vendor/quinn-0.11.3/src/lib.rs", edition = "2021", features = [ + "default", + "log", + "platform-verifier", "ring", "runtime-tokio", "rustls", @@ -9178,6 +16340,8 @@ cargo.rust_library( crate_root = "vendor/quinn-proto-0.11.6/src/lib.rs", edition = "2021", features = [ + "log", + "platform-verifier", "ring", "rustls", ], @@ -9188,6 +16352,7 @@ cargo.rust_library( ":ring-0.17.8", ":rustc-hash-2.0.0", ":rustls-0.23.22", + ":rustls-platform-verifier-0.3.4", ":slab-0.4.9", ":thiserror-1.0.65", ":tinyvec-1.8.0", @@ -9209,7 +16374,10 @@ cargo.rust_library( crate = "quinn_udp", crate_root = "vendor/quinn-udp-0.5.4/src/lib.rs", edition = "2021", - features = ["tracing"], + features = [ + "log", + "tracing", + ], platform = { "windows-gnu": dict( deps = [ @@ -9254,6 +16422,19 @@ cargo.rust_library( deps = [":proc-macro2-1.0.86"], ) +cargo.rust_library( + name = "radium-0.7.0", + srcs = [ + "vendor/radium-0.7.0/src/lib.rs", + "vendor/radium-0.7.0/src/macros.rs", + "vendor/radium-0.7.0/src/types.rs", + ], + crate = "radium", + crate_root = "vendor/radium-0.7.0/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "radix_trie-0.2.1", srcs = [ @@ -9343,6 +16524,67 @@ cargo.rust_library( ], ) +alias( + name = "rand", + actual = ":rand-0.9.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "rand-0.9.0", + srcs = [ + "vendor/rand-0.9.0/src/distr/bernoulli.rs", + "vendor/rand-0.9.0/src/distr/distribution.rs", + "vendor/rand-0.9.0/src/distr/float.rs", + "vendor/rand-0.9.0/src/distr/integer.rs", + "vendor/rand-0.9.0/src/distr/mod.rs", + "vendor/rand-0.9.0/src/distr/other.rs", + "vendor/rand-0.9.0/src/distr/slice.rs", + "vendor/rand-0.9.0/src/distr/uniform.rs", + "vendor/rand-0.9.0/src/distr/uniform_float.rs", + "vendor/rand-0.9.0/src/distr/uniform_int.rs", + "vendor/rand-0.9.0/src/distr/uniform_other.rs", + "vendor/rand-0.9.0/src/distr/utils.rs", + "vendor/rand-0.9.0/src/distr/weighted/mod.rs", + "vendor/rand-0.9.0/src/distr/weighted/weighted_index.rs", + "vendor/rand-0.9.0/src/lib.rs", + "vendor/rand-0.9.0/src/prelude.rs", + "vendor/rand-0.9.0/src/rng.rs", + "vendor/rand-0.9.0/src/rngs/mock.rs", + "vendor/rand-0.9.0/src/rngs/mod.rs", + "vendor/rand-0.9.0/src/rngs/reseeding.rs", + "vendor/rand-0.9.0/src/rngs/small.rs", + "vendor/rand-0.9.0/src/rngs/std.rs", + "vendor/rand-0.9.0/src/rngs/thread.rs", + "vendor/rand-0.9.0/src/rngs/xoshiro128plusplus.rs", + "vendor/rand-0.9.0/src/rngs/xoshiro256plusplus.rs", + "vendor/rand-0.9.0/src/seq/coin_flipper.rs", + "vendor/rand-0.9.0/src/seq/increasing_uniform.rs", + "vendor/rand-0.9.0/src/seq/index.rs", + "vendor/rand-0.9.0/src/seq/iterator.rs", + "vendor/rand-0.9.0/src/seq/mod.rs", + "vendor/rand-0.9.0/src/seq/slice.rs", + ], + crate = "rand", + crate_root = "vendor/rand-0.9.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "os_rng", + "small_rng", + "std", + "std_rng", + "thread_rng", + ], + visibility = [], + deps = [ + ":rand_chacha-0.9.0", + ":rand_core-0.9.0", + ":zerocopy-0.8.16", + ], +) + cargo.rust_library( name = "rand_chacha-0.3.1", srcs = [ @@ -9361,6 +16603,24 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "rand_chacha-0.9.0", + srcs = [ + "vendor/rand_chacha-0.9.0/src/chacha.rs", + "vendor/rand_chacha-0.9.0/src/guts.rs", + "vendor/rand_chacha-0.9.0/src/lib.rs", + ], + crate = "rand_chacha", + crate_root = "vendor/rand_chacha-0.9.0/src/lib.rs", + edition = "2021", + features = ["std"], + visibility = [], + deps = [ + ":ppv-lite86-0.2.20", + ":rand_core-0.9.0", + ], +) + cargo.rust_library( name = "rand_core-0.6.4", srcs = [ @@ -9383,6 +16643,35 @@ cargo.rust_library( deps = [":getrandom-0.2.15"], ) +cargo.rust_library( + name = "rand_core-0.9.0", + srcs = [ + "vendor/rand_core-0.9.0/src/block.rs", + "vendor/rand_core-0.9.0/src/impls.rs", + "vendor/rand_core-0.9.0/src/le.rs", + "vendor/rand_core-0.9.0/src/lib.rs", + "vendor/rand_core-0.9.0/src/os.rs", + ], + crate = "rand_core", + crate_root = "vendor/rand_core-0.9.0/src/lib.rs", + edition = "2021", + features = [ + "os_rng", + "std", + ], + visibility = [], + deps = [ + ":getrandom-0.3.1", + ":zerocopy-0.8.16", + ], +) + +alias( + name = "rayon", + actual = ":rayon-1.10.0", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "rayon-1.10.0", srcs = [ @@ -9537,6 +16826,42 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "ref-cast-1.0.23", + srcs = [ + "vendor/ref-cast-1.0.23/src/custom.rs", + "vendor/ref-cast-1.0.23/src/layout.rs", + "vendor/ref-cast-1.0.23/src/lib.rs", + "vendor/ref-cast-1.0.23/src/trivial.rs", + ], + crate = "ref_cast", + crate_root = "vendor/ref-cast-1.0.23/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":ref-cast-impl-1.0.23"], +) + +cargo.rust_library( + name = "ref-cast-impl-1.0.23", + srcs = ["vendor/ref-cast-impl-1.0.23/src/lib.rs"], + crate = "ref_cast_impl", + crate_root = "vendor/ref-cast-impl-1.0.23/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +alias( + name = "regex", + actual = ":regex-1.11.1", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "regex-1.11.1", srcs = [ @@ -9584,6 +16909,40 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "regex-automata-0.1.10", + srcs = [ + "vendor/regex-automata-0.1.10/src/byteorder.rs", + "vendor/regex-automata-0.1.10/src/classes.rs", + "vendor/regex-automata-0.1.10/src/codegen.rs", + "vendor/regex-automata-0.1.10/src/dense.rs", + "vendor/regex-automata-0.1.10/src/determinize.rs", + "vendor/regex-automata-0.1.10/src/dfa.rs", + "vendor/regex-automata-0.1.10/src/error.rs", + "vendor/regex-automata-0.1.10/src/lib.rs", + "vendor/regex-automata-0.1.10/src/minimize.rs", + "vendor/regex-automata-0.1.10/src/nfa/compiler.rs", + "vendor/regex-automata-0.1.10/src/nfa/map.rs", + "vendor/regex-automata-0.1.10/src/nfa/mod.rs", + "vendor/regex-automata-0.1.10/src/nfa/range_trie.rs", + "vendor/regex-automata-0.1.10/src/regex.rs", + "vendor/regex-automata-0.1.10/src/sparse.rs", + "vendor/regex-automata-0.1.10/src/sparse_set.rs", + "vendor/regex-automata-0.1.10/src/state_id.rs", + "vendor/regex-automata-0.1.10/src/transducer.rs", + ], + crate = "regex_automata", + crate_root = "vendor/regex-automata-0.1.10/src/lib.rs", + edition = "2015", + features = [ + "default", + "regex-syntax", + "std", + ], + visibility = [], + deps = [":regex-syntax-0.6.29"], +) + cargo.rust_library( name = "regex-automata-0.4.8", srcs = [ @@ -9721,6 +17080,58 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "regex-syntax-0.6.29", + srcs = [ + "vendor/regex-syntax-0.6.29/src/ast/mod.rs", + "vendor/regex-syntax-0.6.29/src/ast/parse.rs", + "vendor/regex-syntax-0.6.29/src/ast/print.rs", + "vendor/regex-syntax-0.6.29/src/ast/visitor.rs", + "vendor/regex-syntax-0.6.29/src/either.rs", + "vendor/regex-syntax-0.6.29/src/error.rs", + "vendor/regex-syntax-0.6.29/src/hir/interval.rs", + "vendor/regex-syntax-0.6.29/src/hir/literal/mod.rs", + "vendor/regex-syntax-0.6.29/src/hir/mod.rs", + "vendor/regex-syntax-0.6.29/src/hir/print.rs", + "vendor/regex-syntax-0.6.29/src/hir/translate.rs", + "vendor/regex-syntax-0.6.29/src/hir/visitor.rs", + "vendor/regex-syntax-0.6.29/src/lib.rs", + "vendor/regex-syntax-0.6.29/src/parser.rs", + "vendor/regex-syntax-0.6.29/src/unicode.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/age.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/case_folding_simple.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/general_category.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/grapheme_cluster_break.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/mod.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/perl_decimal.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/perl_space.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/perl_word.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/property_bool.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/property_names.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/property_values.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/script.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/script_extension.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/sentence_break.rs", + "vendor/regex-syntax-0.6.29/src/unicode_tables/word_break.rs", + "vendor/regex-syntax-0.6.29/src/utf8.rs", + ], + crate = "regex_syntax", + crate_root = "vendor/regex-syntax-0.6.29/src/lib.rs", + edition = "2018", + features = [ + "default", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + ], + visibility = [], +) + cargo.rust_library( name = "regex-syntax-0.8.5", srcs = [ @@ -9776,6 +17187,26 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "rend-0.4.2", + srcs = [ + "vendor/rend-0.4.2/src/impl_bytemuck.rs", + "vendor/rend-0.4.2/src/impl_struct.rs", + "vendor/rend-0.4.2/src/impl_traits.rs", + "vendor/rend-0.4.2/src/impl_validation.rs", + "vendor/rend-0.4.2/src/lib.rs", + ], + crate = "rend", + crate_root = "vendor/rend-0.4.2/src/lib.rs", + edition = "2018", + features = [ + "bytecheck", + "std", + ], + visibility = [], + deps = [":bytecheck-0.6.12"], +) + alias( name = "reqwest", actual = ":reqwest-0.12.12", @@ -10062,6 +17493,29 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "rfc6979-0.4.0", + srcs = [ + "vendor/rfc6979-0.4.0/README.md", + "vendor/rfc6979-0.4.0/src/ct_cmp.rs", + "vendor/rfc6979-0.4.0/src/lib.rs", + ], + crate = "rfc6979", + crate_root = "vendor/rfc6979-0.4.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":hmac-0.12.1", + ":subtle-2.6.1", + ], +) + +alias( + name = "ring", + actual = ":ring-0.17.8", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "ring-0.17.8", srcs = [ @@ -10360,6 +17814,190 @@ buildscript_run( version = "0.17.8", ) +cargo.rust_library( + name = "rkyv-0.7.44", + srcs = [ + "vendor/rkyv-0.7.44/src/bitvec.rs", + "vendor/rkyv-0.7.44/src/boxed.rs", + "vendor/rkyv-0.7.44/src/collections/btree_map/mod.rs", + "vendor/rkyv-0.7.44/src/collections/btree_map/validation.rs", + "vendor/rkyv-0.7.44/src/collections/btree_set.rs", + "vendor/rkyv-0.7.44/src/collections/hash_index/mod.rs", + "vendor/rkyv-0.7.44/src/collections/hash_index/validation.rs", + "vendor/rkyv-0.7.44/src/collections/hash_map/mod.rs", + "vendor/rkyv-0.7.44/src/collections/hash_map/validation.rs", + "vendor/rkyv-0.7.44/src/collections/hash_set.rs", + "vendor/rkyv-0.7.44/src/collections/index_map/mod.rs", + "vendor/rkyv-0.7.44/src/collections/index_map/validation.rs", + "vendor/rkyv-0.7.44/src/collections/index_set.rs", + "vendor/rkyv-0.7.44/src/collections/mod.rs", + "vendor/rkyv-0.7.44/src/collections/util/mod.rs", + "vendor/rkyv-0.7.44/src/collections/util/validation.rs", + "vendor/rkyv-0.7.44/src/copy.rs", + "vendor/rkyv-0.7.44/src/de/deserializers/alloc.rs", + "vendor/rkyv-0.7.44/src/de/deserializers/mod.rs", + "vendor/rkyv-0.7.44/src/de/mod.rs", + "vendor/rkyv-0.7.44/src/ffi.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/boxed.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/collections/btree_map.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/collections/btree_set.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/collections/mod.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/mod.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/niche.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/rc.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/string.rs", + "vendor/rkyv-0.7.44/src/impls/alloc/vec.rs", + "vendor/rkyv-0.7.44/src/impls/arrayvec.rs", + "vendor/rkyv-0.7.44/src/impls/bitvec.rs", + "vendor/rkyv-0.7.44/src/impls/bytes.rs", + "vendor/rkyv-0.7.44/src/impls/core/mod.rs", + "vendor/rkyv-0.7.44/src/impls/core/ops.rs", + "vendor/rkyv-0.7.44/src/impls/core/option.rs", + "vendor/rkyv-0.7.44/src/impls/core/primitive.rs", + "vendor/rkyv-0.7.44/src/impls/core/result.rs", + "vendor/rkyv-0.7.44/src/impls/core/time.rs", + "vendor/rkyv-0.7.44/src/impls/hashbrown/hash_map.rs", + "vendor/rkyv-0.7.44/src/impls/hashbrown/hash_set.rs", + "vendor/rkyv-0.7.44/src/impls/hashbrown/mod.rs", + "vendor/rkyv-0.7.44/src/impls/indexmap/index_map.rs", + "vendor/rkyv-0.7.44/src/impls/indexmap/index_set.rs", + "vendor/rkyv-0.7.44/src/impls/indexmap/mod.rs", + "vendor/rkyv-0.7.44/src/impls/mod.rs", + "vendor/rkyv-0.7.44/src/impls/rend.rs", + "vendor/rkyv-0.7.44/src/impls/smallvec.rs", + "vendor/rkyv-0.7.44/src/impls/smolstr.rs", + "vendor/rkyv-0.7.44/src/impls/std/collections/hash_map.rs", + "vendor/rkyv-0.7.44/src/impls/std/collections/hash_set.rs", + "vendor/rkyv-0.7.44/src/impls/std/collections/mod.rs", + "vendor/rkyv-0.7.44/src/impls/std/collections/vecdeque.rs", + "vendor/rkyv-0.7.44/src/impls/std/ffi.rs", + "vendor/rkyv-0.7.44/src/impls/std/mod.rs", + "vendor/rkyv-0.7.44/src/impls/std/net.rs", + "vendor/rkyv-0.7.44/src/impls/std/time.rs", + "vendor/rkyv-0.7.44/src/impls/tinyvec.rs", + "vendor/rkyv-0.7.44/src/impls/uuid.rs", + "vendor/rkyv-0.7.44/src/lib.rs", + "vendor/rkyv-0.7.44/src/macros.rs", + "vendor/rkyv-0.7.44/src/net.rs", + "vendor/rkyv-0.7.44/src/niche/mod.rs", + "vendor/rkyv-0.7.44/src/niche/option_box.rs", + "vendor/rkyv-0.7.44/src/niche/option_nonzero.rs", + "vendor/rkyv-0.7.44/src/ops.rs", + "vendor/rkyv-0.7.44/src/option.rs", + "vendor/rkyv-0.7.44/src/rc/mod.rs", + "vendor/rkyv-0.7.44/src/rc/validation.rs", + "vendor/rkyv-0.7.44/src/rel_ptr/mod.rs", + "vendor/rkyv-0.7.44/src/rel_ptr/validation.rs", + "vendor/rkyv-0.7.44/src/result.rs", + "vendor/rkyv-0.7.44/src/ser/mod.rs", + "vendor/rkyv-0.7.44/src/ser/serializers/alloc.rs", + "vendor/rkyv-0.7.44/src/ser/serializers/core.rs", + "vendor/rkyv-0.7.44/src/ser/serializers/mod.rs", + "vendor/rkyv-0.7.44/src/ser/serializers/std.rs", + "vendor/rkyv-0.7.44/src/string/mod.rs", + "vendor/rkyv-0.7.44/src/string/repr.rs", + "vendor/rkyv-0.7.44/src/time.rs", + "vendor/rkyv-0.7.44/src/util/aligned_vec.rs", + "vendor/rkyv-0.7.44/src/util/mod.rs", + "vendor/rkyv-0.7.44/src/util/scratch_vec.rs", + "vendor/rkyv-0.7.44/src/validation/mod.rs", + "vendor/rkyv-0.7.44/src/validation/owned.rs", + "vendor/rkyv-0.7.44/src/validation/validators/archive.rs", + "vendor/rkyv-0.7.44/src/validation/validators/mod.rs", + "vendor/rkyv-0.7.44/src/validation/validators/shared.rs", + "vendor/rkyv-0.7.44/src/validation/validators/util.rs", + "vendor/rkyv-0.7.44/src/vec/mod.rs", + "vendor/rkyv-0.7.44/src/vec/raw.rs", + "vendor/rkyv-0.7.44/src/with/alloc.rs", + "vendor/rkyv-0.7.44/src/with/atomic.rs", + "vendor/rkyv-0.7.44/src/with/core.rs", + "vendor/rkyv-0.7.44/src/with/mod.rs", + "vendor/rkyv-0.7.44/src/with/std.rs", + ], + crate = "rkyv", + crate_root = "vendor/rkyv-0.7.44/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "hashbrown", + "size_32", + "std", + ], + visibility = [], + deps = [ + ":bitvec-1.0.1", + ":bytecheck-0.6.12", + ":bytes-1.10.0", + ":hashbrown-0.12.3", + ":ptr_meta-0.1.4", + ":rend-0.4.2", + ":rkyv_derive-0.7.44", + ":seahash-4.1.0", + ":tinyvec-1.8.0", + ":uuid-1.13.1", + ], +) + +cargo.rust_library( + name = "rkyv_derive-0.7.44", + srcs = [ + "vendor/rkyv_derive-0.7.44/src/archive.rs", + "vendor/rkyv_derive-0.7.44/src/attributes.rs", + "vendor/rkyv_derive-0.7.44/src/deserialize.rs", + "vendor/rkyv_derive-0.7.44/src/lib.rs", + "vendor/rkyv_derive-0.7.44/src/repr.rs", + "vendor/rkyv_derive-0.7.44/src/serde/mod.rs", + "vendor/rkyv_derive-0.7.44/src/serde/receiver.rs", + "vendor/rkyv_derive-0.7.44/src/serde/respan.rs", + "vendor/rkyv_derive-0.7.44/src/serialize.rs", + "vendor/rkyv_derive-0.7.44/src/util.rs", + "vendor/rkyv_derive-0.7.44/src/with.rs", + ], + crate = "rkyv_derive", + crate_root = "vendor/rkyv_derive-0.7.44/src/lib.rs", + edition = "2021", + features = ["default"], + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-1.0.109", + ], +) + +cargo.rust_library( + name = "ron-0.8.1", + srcs = [ + "vendor/ron-0.8.1/README.md", + "vendor/ron-0.8.1/src/de/id.rs", + "vendor/ron-0.8.1/src/de/mod.rs", + "vendor/ron-0.8.1/src/de/tag.rs", + "vendor/ron-0.8.1/src/de/tests.rs", + "vendor/ron-0.8.1/src/de/value.rs", + "vendor/ron-0.8.1/src/error.rs", + "vendor/ron-0.8.1/src/extensions.rs", + "vendor/ron-0.8.1/src/lib.rs", + "vendor/ron-0.8.1/src/options.rs", + "vendor/ron-0.8.1/src/parse.rs", + "vendor/ron-0.8.1/src/ser/mod.rs", + "vendor/ron-0.8.1/src/ser/tests.rs", + "vendor/ron-0.8.1/src/ser/value.rs", + "vendor/ron-0.8.1/src/value.rs", + ], + crate = "ron", + crate_root = "vendor/ron-0.8.1/src/lib.rs", + edition = "2021", + features = ["default"], + visibility = [], + deps = [ + ":base64-0.21.7", + ":bitflags-2.6.0", + ":serde-1.0.217", + ":serde_derive-1.0.217", + ], +) + cargo.rust_library( name = "rpassword-7.3.1", srcs = ["vendor/rpassword-7.3.1/src/lib.rs"], @@ -10399,6 +18037,73 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "rsa-0.9.6", + srcs = [ + "vendor/rsa-0.9.6/README.md", + "vendor/rsa-0.9.6/src/algorithms.rs", + "vendor/rsa-0.9.6/src/algorithms/generate.rs", + "vendor/rsa-0.9.6/src/algorithms/mgf.rs", + "vendor/rsa-0.9.6/src/algorithms/oaep.rs", + "vendor/rsa-0.9.6/src/algorithms/pad.rs", + "vendor/rsa-0.9.6/src/algorithms/pkcs1v15.rs", + "vendor/rsa-0.9.6/src/algorithms/pss.rs", + "vendor/rsa-0.9.6/src/algorithms/rsa.rs", + "vendor/rsa-0.9.6/src/dummy_rng.rs", + "vendor/rsa-0.9.6/src/encoding.rs", + "vendor/rsa-0.9.6/src/errors.rs", + "vendor/rsa-0.9.6/src/hazmat.rs", + "vendor/rsa-0.9.6/src/key.rs", + "vendor/rsa-0.9.6/src/lib.rs", + "vendor/rsa-0.9.6/src/oaep.rs", + "vendor/rsa-0.9.6/src/oaep/decrypting_key.rs", + "vendor/rsa-0.9.6/src/oaep/encrypting_key.rs", + "vendor/rsa-0.9.6/src/pkcs1v15.rs", + "vendor/rsa-0.9.6/src/pkcs1v15/decrypting_key.rs", + "vendor/rsa-0.9.6/src/pkcs1v15/encrypting_key.rs", + "vendor/rsa-0.9.6/src/pkcs1v15/signature.rs", + "vendor/rsa-0.9.6/src/pkcs1v15/signing_key.rs", + "vendor/rsa-0.9.6/src/pkcs1v15/verifying_key.rs", + "vendor/rsa-0.9.6/src/pss.rs", + "vendor/rsa-0.9.6/src/pss/blinded_signing_key.rs", + "vendor/rsa-0.9.6/src/pss/signature.rs", + "vendor/rsa-0.9.6/src/pss/signing_key.rs", + "vendor/rsa-0.9.6/src/pss/verifying_key.rs", + "vendor/rsa-0.9.6/src/traits.rs", + "vendor/rsa-0.9.6/src/traits/encryption.rs", + "vendor/rsa-0.9.6/src/traits/keys.rs", + "vendor/rsa-0.9.6/src/traits/padding.rs", + ], + crate = "rsa", + crate_root = "vendor/rsa-0.9.6/src/lib.rs", + edition = "2021", + features = [ + "default", + "pem", + "sha2", + "std", + "u64_digit", + ], + named_deps = { + "num_bigint": ":num-bigint-dig-0.8.4", + }, + visibility = [], + deps = [ + ":const-oid-0.9.6", + ":digest-0.10.7", + ":num-integer-0.1.46", + ":num-traits-0.2.19", + ":pkcs1-0.7.5", + ":pkcs8-0.10.2", + ":rand_core-0.6.4", + ":sha2-0.10.8", + ":signature-2.2.0", + ":spki-0.7.3", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], +) + cargo.rust_library( name = "rtoolbox-0.0.2", srcs = [ @@ -10436,6 +18141,367 @@ cargo.rust_library( visibility = [], ) +alias( + name = "russh", + actual = ":russh-0.50.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "russh-0.50.0", + srcs = [ + "vendor/russh-0.50.0/src/auth.rs", + "vendor/russh-0.50.0/src/cert.rs", + "vendor/russh-0.50.0/src/channels/channel_ref.rs", + "vendor/russh-0.50.0/src/channels/channel_stream.rs", + "vendor/russh-0.50.0/src/channels/io/mod.rs", + "vendor/russh-0.50.0/src/channels/io/rx.rs", + "vendor/russh-0.50.0/src/channels/io/tx.rs", + "vendor/russh-0.50.0/src/channels/mod.rs", + "vendor/russh-0.50.0/src/cipher/block.rs", + "vendor/russh-0.50.0/src/cipher/cbc.rs", + "vendor/russh-0.50.0/src/cipher/chacha20poly1305.rs", + "vendor/russh-0.50.0/src/cipher/clear.rs", + "vendor/russh-0.50.0/src/cipher/gcm.rs", + "vendor/russh-0.50.0/src/cipher/mod.rs", + "vendor/russh-0.50.0/src/client/encrypted.rs", + "vendor/russh-0.50.0/src/client/kex.rs", + "vendor/russh-0.50.0/src/client/mod.rs", + "vendor/russh-0.50.0/src/client/session.rs", + "vendor/russh-0.50.0/src/compression.rs", + "vendor/russh-0.50.0/src/helpers.rs", + "vendor/russh-0.50.0/src/kex/curve25519.rs", + "vendor/russh-0.50.0/src/kex/dh/groups.rs", + "vendor/russh-0.50.0/src/kex/dh/mod.rs", + "vendor/russh-0.50.0/src/kex/ecdh_nistp.rs", + "vendor/russh-0.50.0/src/kex/mod.rs", + "vendor/russh-0.50.0/src/kex/none.rs", + "vendor/russh-0.50.0/src/keys/agent/client.rs", + "vendor/russh-0.50.0/src/keys/agent/mod.rs", + "vendor/russh-0.50.0/src/keys/agent/msg.rs", + "vendor/russh-0.50.0/src/keys/agent/server.rs", + "vendor/russh-0.50.0/src/keys/format/mod.rs", + "vendor/russh-0.50.0/src/keys/format/openssh.rs", + "vendor/russh-0.50.0/src/keys/format/pkcs5.rs", + "vendor/russh-0.50.0/src/keys/format/pkcs8.rs", + "vendor/russh-0.50.0/src/keys/format/pkcs8_legacy.rs", + "vendor/russh-0.50.0/src/keys/format/tests.rs", + "vendor/russh-0.50.0/src/keys/key.rs", + "vendor/russh-0.50.0/src/keys/known_hosts.rs", + "vendor/russh-0.50.0/src/keys/mod.rs", + "vendor/russh-0.50.0/src/lib.rs", + "vendor/russh-0.50.0/src/mac/crypto.rs", + "vendor/russh-0.50.0/src/mac/crypto_etm.rs", + "vendor/russh-0.50.0/src/mac/mod.rs", + "vendor/russh-0.50.0/src/mac/none.rs", + "vendor/russh-0.50.0/src/msg.rs", + "vendor/russh-0.50.0/src/negotiation.rs", + "vendor/russh-0.50.0/src/parsing.rs", + "vendor/russh-0.50.0/src/pty.rs", + "vendor/russh-0.50.0/src/server/encrypted.rs", + "vendor/russh-0.50.0/src/server/kex.rs", + "vendor/russh-0.50.0/src/server/mod.rs", + "vendor/russh-0.50.0/src/server/session.rs", + "vendor/russh-0.50.0/src/session.rs", + "vendor/russh-0.50.0/src/ssh_read.rs", + "vendor/russh-0.50.0/src/sshbuffer.rs", + "vendor/russh-0.50.0/src/tests.rs", + ], + crate = "russh", + crate_root = "vendor/russh-0.50.0/src/lib.rs", + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/russh-0.50.0", + "CARGO_PKG_AUTHORS": "Pierre-Étienne Meunier ", + "CARGO_PKG_DESCRIPTION": "A client and server SSH library.", + "CARGO_PKG_NAME": "russh", + "CARGO_PKG_REPOSITORY": "https://github.com/warp-tech/russh", + "CARGO_PKG_VERSION": "0.50.0", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "50", + "CARGO_PKG_VERSION_PATCH": "0", + }, + features = [ + "default", + "flate2", + ], + named_deps = { + "ssh_key": ":internal-russh-forked-ssh-key-0.6.9+upstream-0.6.7", + }, + platform = { + "linux-arm64": dict( + deps = [ + ":home-0.5.9", + ":tokio-stream-0.1.17", + ], + ), + "linux-x86_64": dict( + deps = [ + ":home-0.5.9", + ":tokio-stream-0.1.17", + ], + ), + "macos-arm64": dict( + deps = [ + ":home-0.5.9", + ":tokio-stream-0.1.17", + ], + ), + "macos-x86_64": dict( + deps = [ + ":home-0.5.9", + ":tokio-stream-0.1.17", + ], + ), + "windows-gnu": dict( + deps = [ + ":home-0.5.9", + ":pageant-0.0.2", + ":tokio-stream-0.1.17", + ], + ), + "windows-msvc": dict( + deps = [ + ":home-0.5.9", + ":pageant-0.0.2", + ":tokio-stream-0.1.17", + ], + ), + }, + visibility = [], + deps = [ + ":aes-0.8.4", + ":aes-gcm-0.10.3", + ":bitflags-2.6.0", + ":block-padding-0.3.3", + ":byteorder-1.5.0", + ":bytes-1.10.0", + ":cbc-0.1.2", + ":chacha20-0.9.1", + ":ctr-0.9.2", + ":curve25519-dalek-4.1.3", + ":data-encoding-2.6.0", + ":delegate-0.13.1", + ":der-0.7.9", + ":digest-0.10.7", + ":ecdsa-0.16.9", + ":ed25519-dalek-2.1.1", + ":elliptic-curve-0.13.8", + ":enum_dispatch-0.3.13", + ":flate2-1.0.35", + ":futures-0.3.31", + ":generic-array-0.14.7", + ":getrandom-0.2.15", + ":hex-literal-0.4.1", + ":hmac-0.12.1", + ":inout-0.1.3", + ":log-0.4.22", + ":md5-0.7.0", + ":num-bigint-0.4.6", + ":once_cell-1.20.3", + ":p256-0.13.2", + ":p384-0.13.0", + ":p521-0.13.3", + ":pbkdf2-0.12.2", + ":pkcs1-0.7.5", + ":pkcs5-0.7.1", + ":pkcs8-0.10.2", + ":poly1305-0.8.0", + ":rand-0.8.5", + ":rand_core-0.6.4", + ":rsa-0.9.6", + ":russh-cryptovec-0.50.0", + ":russh-util-0.50.0", + ":sec1-0.7.3", + ":sha1-0.10.6", + ":sha2-0.10.8", + ":signature-2.2.0", + ":spki-0.7.3", + ":ssh-encoding-0.2.0", + ":subtle-2.6.1", + ":thiserror-1.0.65", + ":tokio-1.43.0", + ":typenum-1.17.0", + ":zeroize-1.8.1", + ], +) + +cargo.rust_library( + name = "russh-cryptovec-0.50.0", + srcs = [ + "vendor/russh-cryptovec-0.50.0/src/cryptovec.rs", + "vendor/russh-cryptovec-0.50.0/src/lib.rs", + "vendor/russh-cryptovec-0.50.0/src/platform/mod.rs", + "vendor/russh-cryptovec-0.50.0/src/platform/unix.rs", + "vendor/russh-cryptovec-0.50.0/src/platform/wasm.rs", + "vendor/russh-cryptovec-0.50.0/src/platform/windows.rs", + "vendor/russh-cryptovec-0.50.0/src/ssh.rs", + ], + crate = "russh_cryptovec", + crate_root = "vendor/russh-cryptovec-0.50.0/src/lib.rs", + edition = "2021", + features = ["ssh-encoding"], + platform = { + "windows-gnu": dict( + deps = [":winapi-0.3.9"], + ), + "windows-msvc": dict( + deps = [":winapi-0.3.9"], + ), + }, + visibility = [], + deps = [ + ":libc-0.2.169", + ":ssh-encoding-0.2.0", + ], +) + +cargo.rust_library( + name = "russh-util-0.50.0", + srcs = [ + "vendor/russh-util-0.50.0/src/lib.rs", + "vendor/russh-util-0.50.0/src/runtime.rs", + "vendor/russh-util-0.50.0/src/time.rs", + ], + crate = "russh_util", + crate_root = "vendor/russh-util-0.50.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":chrono-0.4.39", + ":tokio-1.43.0", + ], +) + +cargo.rust_library( + name = "rust-ini-0.21.1", + srcs = ["vendor/rust-ini-0.21.1/src/lib.rs"], + crate = "ini", + crate_root = "vendor/rust-ini-0.21.1/src/lib.rs", + edition = "2018", + features = ["default"], + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":ordered-multimap-0.7.3", + ":trim-in-place-0.1.7", + ], +) + +cargo.rust_library( + name = "rust_decimal-1.35.0", + srcs = [ + "vendor/rust_decimal-1.35.0/src/arithmetic_impls.rs", + "vendor/rust_decimal-1.35.0/src/constants.rs", + "vendor/rust_decimal-1.35.0/src/decimal.rs", + "vendor/rust_decimal-1.35.0/src/error.rs", + "vendor/rust_decimal-1.35.0/src/fuzz.rs", + "vendor/rust_decimal-1.35.0/src/lib.rs", + "vendor/rust_decimal-1.35.0/src/maths.rs", + "vendor/rust_decimal-1.35.0/src/mysql.rs", + "vendor/rust_decimal-1.35.0/src/ops.rs", + "vendor/rust_decimal-1.35.0/src/ops/add.rs", + "vendor/rust_decimal-1.35.0/src/ops/array.rs", + "vendor/rust_decimal-1.35.0/src/ops/cmp.rs", + "vendor/rust_decimal-1.35.0/src/ops/common.rs", + "vendor/rust_decimal-1.35.0/src/ops/div.rs", + "vendor/rust_decimal-1.35.0/src/ops/legacy.rs", + "vendor/rust_decimal-1.35.0/src/ops/mul.rs", + "vendor/rust_decimal-1.35.0/src/ops/rem.rs", + "vendor/rust_decimal-1.35.0/src/postgres.rs", + "vendor/rust_decimal-1.35.0/src/postgres/common.rs", + "vendor/rust_decimal-1.35.0/src/postgres/diesel.rs", + "vendor/rust_decimal-1.35.0/src/postgres/driver.rs", + "vendor/rust_decimal-1.35.0/src/proptest.rs", + "vendor/rust_decimal-1.35.0/src/rand.rs", + "vendor/rust_decimal-1.35.0/src/rocket.rs", + "vendor/rust_decimal-1.35.0/src/serde.rs", + "vendor/rust_decimal-1.35.0/src/str.rs", + ], + crate = "rust_decimal", + crate_root = "vendor/rust_decimal-1.35.0/src/lib.rs", + edition = "2021", + env = { + "OUT_DIR": "$(location :rust_decimal-1.35.0-build-script-run[out_dir])", + }, + features = [ + "maths", + "serde", + "std", + ], + visibility = [], + deps = [ + ":arrayvec-0.7.6", + ":borsh-1.5.1", + ":bytes-1.10.0", + ":num-traits-0.2.19", + ":rand-0.8.5", + ":rkyv-0.7.44", + ":serde-1.0.217", + ":serde_json-1.0.138", + ], +) + +cargo.rust_binary( + name = "rust_decimal-1.35.0-build-script-build", + srcs = [ + "vendor/rust_decimal-1.35.0/benches/comparison.rs", + "vendor/rust_decimal-1.35.0/benches/lib_benches.rs", + "vendor/rust_decimal-1.35.0/build.rs", + "vendor/rust_decimal-1.35.0/make/scripts/version.rs", + "vendor/rust_decimal-1.35.0/src/arithmetic_impls.rs", + "vendor/rust_decimal-1.35.0/src/constants.rs", + "vendor/rust_decimal-1.35.0/src/decimal.rs", + "vendor/rust_decimal-1.35.0/src/error.rs", + "vendor/rust_decimal-1.35.0/src/fuzz.rs", + "vendor/rust_decimal-1.35.0/src/lib.rs", + "vendor/rust_decimal-1.35.0/src/maths.rs", + "vendor/rust_decimal-1.35.0/src/mysql.rs", + "vendor/rust_decimal-1.35.0/src/ops.rs", + "vendor/rust_decimal-1.35.0/src/ops/add.rs", + "vendor/rust_decimal-1.35.0/src/ops/array.rs", + "vendor/rust_decimal-1.35.0/src/ops/cmp.rs", + "vendor/rust_decimal-1.35.0/src/ops/common.rs", + "vendor/rust_decimal-1.35.0/src/ops/div.rs", + "vendor/rust_decimal-1.35.0/src/ops/legacy.rs", + "vendor/rust_decimal-1.35.0/src/ops/mul.rs", + "vendor/rust_decimal-1.35.0/src/ops/rem.rs", + "vendor/rust_decimal-1.35.0/src/postgres.rs", + "vendor/rust_decimal-1.35.0/src/postgres/common.rs", + "vendor/rust_decimal-1.35.0/src/postgres/diesel.rs", + "vendor/rust_decimal-1.35.0/src/postgres/driver.rs", + "vendor/rust_decimal-1.35.0/src/proptest.rs", + "vendor/rust_decimal-1.35.0/src/rand.rs", + "vendor/rust_decimal-1.35.0/src/rocket.rs", + "vendor/rust_decimal-1.35.0/src/serde.rs", + "vendor/rust_decimal-1.35.0/src/str.rs", + "vendor/rust_decimal-1.35.0/tests/decimal_tests.rs", + "vendor/rust_decimal-1.35.0/tests/macros.rs", + "vendor/rust_decimal-1.35.0/tests/version-numbers.rs", + ], + crate = "build_script_build", + crate_root = "vendor/rust_decimal-1.35.0/build.rs", + edition = "2021", + features = [ + "maths", + "serde", + "std", + ], + visibility = [], +) + +buildscript_run( + name = "rust_decimal-1.35.0-build-script-run", + package_name = "rust_decimal", + buildscript_rule = ":rust_decimal-1.35.0-build-script-build", + features = [ + "maths", + "serde", + "std", + ], + version = "1.35.0", +) + cargo.rust_library( name = "rustc-hash-1.1.0", srcs = ["vendor/rustc-hash-1.1.0/src/lib.rs"], @@ -10466,6 +18532,31 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "rustc_lexer-0.1.0", + srcs = [ + "vendor/rustc_lexer-0.1.0/src/cursor.rs", + "vendor/rustc_lexer-0.1.0/src/lib.rs", + "vendor/rustc_lexer-0.1.0/src/unescape.rs", + "vendor/rustc_lexer-0.1.0/src/unescape/tests.rs", + ], + crate = "rustc_lexer", + crate_root = "vendor/rustc_lexer-0.1.0/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":unicode-xid-0.2.4"], +) + +cargo.rust_library( + name = "rustc_version-0.4.1", + srcs = ["vendor/rustc_version-0.4.1/src/lib.rs"], + crate = "rustc_version", + crate_root = "vendor/rustc_version-0.4.1/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":semver-1.0.25"], +) + cargo.rust_library( name = "rustix-0.37.27", srcs = [ @@ -12058,6 +20149,72 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "rustls-platform-verifier-0.3.4", + srcs = [ + "vendor/rustls-platform-verifier-0.3.4/README.md", + "vendor/rustls-platform-verifier-0.3.4/src/android.rs", + "vendor/rustls-platform-verifier-0.3.4/src/lib.rs", + "vendor/rustls-platform-verifier-0.3.4/src/tests/ffi.rs", + "vendor/rustls-platform-verifier-0.3.4/src/tests/mod.rs", + "vendor/rustls-platform-verifier-0.3.4/src/tests/verification_mock/mod.rs", + "vendor/rustls-platform-verifier-0.3.4/src/tests/verification_real_world/mod.rs", + "vendor/rustls-platform-verifier-0.3.4/src/tests/verification_real_world/update_valid_ee_certs.rs", + "vendor/rustls-platform-verifier-0.3.4/src/verification/android.rs", + "vendor/rustls-platform-verifier-0.3.4/src/verification/apple.rs", + "vendor/rustls-platform-verifier-0.3.4/src/verification/mod.rs", + "vendor/rustls-platform-verifier-0.3.4/src/verification/others.rs", + "vendor/rustls-platform-verifier-0.3.4/src/verification/windows.rs", + "vendor/rustls-platform-verifier-0.3.4/src/windows.rs", + ], + crate = "rustls_platform_verifier", + crate_root = "vendor/rustls-platform-verifier-0.3.4/src/lib.rs", + dlopen_enable = True, + edition = "2021", + platform = { + "linux-arm64": dict( + deps = [ + ":rustls-native-certs-0.7.1", + ":rustls-webpki-0.102.8", + ], + ), + "linux-x86_64": dict( + deps = [ + ":rustls-native-certs-0.7.1", + ":rustls-webpki-0.102.8", + ], + ), + "macos-arm64": dict( + deps = [ + ":core-foundation-0.9.4", + ":core-foundation-sys-0.8.7", + ":security-framework-2.11.1", + ":security-framework-sys-2.11.1", + ], + ), + "macos-x86_64": dict( + deps = [ + ":core-foundation-0.9.4", + ":core-foundation-sys-0.8.7", + ":security-framework-2.11.1", + ":security-framework-sys-2.11.1", + ], + ), + "windows-gnu": dict( + deps = [":winapi-0.3.9"], + ), + "windows-msvc": dict( + deps = [":winapi-0.3.9"], + ), + }, + visibility = [], + deps = [ + ":log-0.4.22", + ":once_cell-1.20.3", + ":rustls-0.23.22", + ], +) + cargo.rust_library( name = "rustls-webpki-0.102.8", srcs = [ @@ -12133,44 +20290,265 @@ cargo.rust_library( "vendor/rustversion-1.0.17/src/token.rs", "vendor/rustversion-1.0.17/src/version.rs", ], - crate = "rustversion", - crate_root = "vendor/rustversion-1.0.17/src/lib.rs", - edition = "2018", - env = { - "OUT_DIR": "$(location :rustversion-1.0.17-build-script-run[out_dir])", - }, - proc_macro = True, - visibility = [], + crate = "rustversion", + crate_root = "vendor/rustversion-1.0.17/src/lib.rs", + edition = "2018", + env = { + "OUT_DIR": "$(location :rustversion-1.0.17-build-script-run[out_dir])", + }, + proc_macro = True, + visibility = [], +) + +cargo.rust_binary( + name = "rustversion-1.0.17-build-script-build", + srcs = [ + "vendor/rustversion-1.0.17/build/build.rs", + "vendor/rustversion-1.0.17/build/rustc.rs", + ], + crate = "build_script_build", + crate_root = "vendor/rustversion-1.0.17/build/build.rs", + edition = "2018", + visibility = [], +) + +buildscript_run( + name = "rustversion-1.0.17-build-script-run", + package_name = "rustversion", + buildscript_rule = ":rustversion-1.0.17-build-script-build", + version = "1.0.17", +) + +alias( + name = "rusty_vault", + actual = ":rusty_vault-0.2.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "rusty_vault-0.2.1", + srcs = [ + "vendor/rusty_vault-0.2.1/src/api/auth.rs", + "vendor/rusty_vault-0.2.1/src/api/client.rs", + "vendor/rusty_vault-0.2.1/src/api/logical.rs", + "vendor/rusty_vault-0.2.1/src/api/mod.rs", + "vendor/rusty_vault-0.2.1/src/api/secret.rs", + "vendor/rusty_vault-0.2.1/src/api/sys.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/auth.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/auth_disable.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/auth_enable.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/auth_help.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/auth_list.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/auth_move.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/delete.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/format.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/list.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/login.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/mod.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/operator.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/operator_init.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/operator_seal.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/operator_unseal.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/read.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/server.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/status.rs", + "vendor/rusty_vault-0.2.1/src/cli/command/write.rs", + "vendor/rusty_vault-0.2.1/src/cli/config.rs", + "vendor/rusty_vault-0.2.1/src/cli/mod.rs", + "vendor/rusty_vault-0.2.1/src/cli/util.rs", + "vendor/rusty_vault-0.2.1/src/context.rs", + "vendor/rusty_vault-0.2.1/src/core.rs", + "vendor/rusty_vault-0.2.1/src/errors.rs", + "vendor/rusty_vault-0.2.1/src/handler.rs", + "vendor/rusty_vault-0.2.1/src/http/logical.rs", + "vendor/rusty_vault-0.2.1/src/http/metrics.rs", + "vendor/rusty_vault-0.2.1/src/http/mod.rs", + "vendor/rusty_vault-0.2.1/src/http/sys.rs", + "vendor/rusty_vault-0.2.1/src/lib.rs", + "vendor/rusty_vault-0.2.1/src/logical/auth.rs", + "vendor/rusty_vault-0.2.1/src/logical/backend.rs", + "vendor/rusty_vault-0.2.1/src/logical/connection.rs", + "vendor/rusty_vault-0.2.1/src/logical/field.rs", + "vendor/rusty_vault-0.2.1/src/logical/lease.rs", + "vendor/rusty_vault-0.2.1/src/logical/mod.rs", + "vendor/rusty_vault-0.2.1/src/logical/path.rs", + "vendor/rusty_vault-0.2.1/src/logical/request.rs", + "vendor/rusty_vault-0.2.1/src/logical/response.rs", + "vendor/rusty_vault-0.2.1/src/logical/secret.rs", + "vendor/rusty_vault-0.2.1/src/metrics/http_metrics.rs", + "vendor/rusty_vault-0.2.1/src/metrics/manager.rs", + "vendor/rusty_vault-0.2.1/src/metrics/middleware.rs", + "vendor/rusty_vault-0.2.1/src/metrics/mod.rs", + "vendor/rusty_vault-0.2.1/src/metrics/system_metrics.rs", + "vendor/rusty_vault-0.2.1/src/module_manager.rs", + "vendor/rusty_vault-0.2.1/src/modules/auth/expiration.rs", + "vendor/rusty_vault-0.2.1/src/modules/auth/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/auth/token_store.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/approle/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/approle/path_login.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/approle/path_role.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/approle/path_tidy_secret_id.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/approle/validation.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/cert/cli.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/cert/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/cert/path_certs.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/cert/path_config.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/cert/path_crls.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/cert/path_login.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/userpass/cli.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/userpass/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/userpass/path_login.rs", + "vendor/rusty_vault-0.2.1/src/modules/credential/userpass/path_users.rs", + "vendor/rusty_vault-0.2.1/src/modules/crypto/crypto_adaptors/common.rs", + "vendor/rusty_vault-0.2.1/src/modules/crypto/crypto_adaptors/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/crypto/crypto_adaptors/openssl_adaptor.rs", + "vendor/rusty_vault-0.2.1/src/modules/crypto/crypto_adaptors/tongsuo_adaptor.rs", + "vendor/rusty_vault-0.2.1/src/modules/crypto/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/kv/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/field.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/mod.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_config_ca.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_config_crl.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_fetch.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_issue.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_keys.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_revoke.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_roles.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/path_root.rs", + "vendor/rusty_vault-0.2.1/src/modules/pki/util.rs", + "vendor/rusty_vault-0.2.1/src/modules/system/mod.rs", + "vendor/rusty_vault-0.2.1/src/mount.rs", + "vendor/rusty_vault-0.2.1/src/router.rs", + "vendor/rusty_vault-0.2.1/src/schema.rs", + "vendor/rusty_vault-0.2.1/src/shamir.rs", + "vendor/rusty_vault-0.2.1/src/storage/barrier.rs", + "vendor/rusty_vault-0.2.1/src/storage/barrier_aes_gcm.rs", + "vendor/rusty_vault-0.2.1/src/storage/barrier_view.rs", + "vendor/rusty_vault-0.2.1/src/storage/mod.rs", + "vendor/rusty_vault-0.2.1/src/storage/mysql/mod.rs", + "vendor/rusty_vault-0.2.1/src/storage/mysql/mysql_backend.rs", + "vendor/rusty_vault-0.2.1/src/storage/physical/file.rs", + "vendor/rusty_vault-0.2.1/src/storage/physical/mock.rs", + "vendor/rusty_vault-0.2.1/src/storage/physical/mod.rs", + "vendor/rusty_vault-0.2.1/src/test_utils.rs", + "vendor/rusty_vault-0.2.1/src/utils/cert.rs", + "vendor/rusty_vault-0.2.1/src/utils/cidr.rs", + "vendor/rusty_vault-0.2.1/src/utils/crypto.rs", + "vendor/rusty_vault-0.2.1/src/utils/ip_sock_addr.rs", + "vendor/rusty_vault-0.2.1/src/utils/key.rs", + "vendor/rusty_vault-0.2.1/src/utils/kv_builder.rs", + "vendor/rusty_vault-0.2.1/src/utils/locks.rs", + "vendor/rusty_vault-0.2.1/src/utils/mod.rs", + "vendor/rusty_vault-0.2.1/src/utils/ocsp.rs", + "vendor/rusty_vault-0.2.1/src/utils/policy.rs", + "vendor/rusty_vault-0.2.1/src/utils/salt.rs", + "vendor/rusty_vault-0.2.1/src/utils/sock_addr.rs", + "vendor/rusty_vault-0.2.1/src/utils/string.rs", + "vendor/rusty_vault-0.2.1/src/utils/token_util.rs", + "vendor/rusty_vault-0.2.1/src/utils/unix_sock_addr.rs", + ], + crate = "rusty_vault", + crate_root = "vendor/rusty_vault-0.2.1/src/lib.rs", + edition = "2021", + env = { + "CARGO_BIN_NAME": "rvault", + "CARGO_MANIFEST_DIR": "vendor/rusty_vault-0.2.1", + "CARGO_PKG_AUTHORS": "", + "CARGO_PKG_DESCRIPTION": "RustyVault is a powerful identity-based secrets management software, providing features such as\ncryptographic key management, encryption as a service, public key cryptography, certificates management, identity credentials\nmanagement and so forth.\n\nRustyVault's RESTful API is designed to be fully compatible with Hashicorp Vault.\n", + "CARGO_PKG_NAME": "rusty_vault", + "CARGO_PKG_REPOSITORY": "https://github.com/Tongsuo-Project/RustyVault", + "CARGO_PKG_VERSION": "0.2.1", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "2", + "CARGO_PKG_VERSION_PATCH": "1", + }, + features = [ + "crypto_adaptor_openssl", + "default", + ], + platform = { + "linux-arm64": dict( + deps = [":daemonize-0.5.0"], + ), + "linux-x86_64": dict( + deps = [":daemonize-0.5.0"], + ), + "macos-arm64": dict( + deps = [":daemonize-0.5.0"], + ), + "macos-x86_64": dict( + deps = [":daemonize-0.5.0"], + ), + }, + rustc_flags = ["@$(location :rusty_vault-0.2.1-build-script-run[rustc_flags])"], + visibility = [], + deps = [ + ":actix-rt-2.10.0", + ":actix-tls-3.4.0", + ":actix-web-4.9.0", + ":anyhow-1.0.93", + ":as-any-0.3.1", + ":async-trait-0.1.86", + ":base64-0.22.1", + ":bcrypt-0.15.1", + ":better_default-1.0.5", + ":blake2b_simd-1.0.3", + ":build-time-0.1.3", + ":chrono-0.4.39", + ":clap-4.5.28", + ":ctor-0.2.9", + ":dashmap-5.5.3", + ":delay_timer-0.11.6", + ":derivative-2.2.0", + ":derive_more-0.99.18", + ":enum-map-2.7.3", + ":env_logger-0.10.2", + ":foreign-types-0.3.2", + ":glob-0.3.1", + ":go-defer-0.1.0", + ":hcl-rs-0.16.9", + ":hex-0.4.3", + ":humantime-2.1.0", + ":ipnetwork-0.20.0", + ":lazy_static-1.5.0", + ":libc-0.2.169", + ":log-0.4.22", + ":openssl-0.10.71", + ":openssl-sys-0.9.106", + ":pem-3.0.4", + ":prettytable-0.10.0", + ":prometheus-client-0.22.3", + ":radix_trie-0.2.1", + ":rand-0.8.5", + ":regex-1.11.1", + ":rpassword-7.3.1", + ":rustls-0.23.22", + ":rustls-pemfile-2.1.3", + ":serde-1.0.217", + ":serde_bytes-0.11.15", + ":serde_derive-1.0.217", + ":serde_json-1.0.138", + ":serde_yaml-0.9.34+deprecated", + ":strum-0.25.0", + ":strum_macros-0.25.3", + ":sysexits-0.7.14", + ":sysinfo-0.31.4", + ":thiserror-1.0.65", + ":tokio-1.43.0", + ":ureq-2.10.1", + ":url-2.5.3", + ":webpki-roots-0.26.3", + ":zeroize-1.8.1", + ], ) cargo.rust_binary( - name = "rustversion-1.0.17-build-script-build", - srcs = [ - "vendor/rustversion-1.0.17/build/build.rs", - "vendor/rustversion-1.0.17/build/rustc.rs", - ], - crate = "build_script_build", - crate_root = "vendor/rustversion-1.0.17/build/build.rs", - edition = "2018", - visibility = [], -) - -buildscript_run( - name = "rustversion-1.0.17-build-script-run", - package_name = "rustversion", - buildscript_rule = ":rustversion-1.0.17-build-script-build", - version = "1.0.17", -) - -alias( - name = "rusty_vault", - actual = ":rusty_vault-0.2.1", - visibility = ["PUBLIC"], -) - -cargo.rust_library( - name = "rusty_vault-0.2.1", + name = "rusty_vault-0.2.1-build-script-build", srcs = [ + "vendor/rusty_vault-0.2.1/bin/rusty_vault.rs", + "vendor/rusty_vault-0.2.1/build.rs", "vendor/rusty_vault-0.2.1/src/api/auth.rs", "vendor/rusty_vault-0.2.1/src/api/client.rs", "vendor/rusty_vault-0.2.1/src/api/logical.rs", @@ -12291,11 +20669,13 @@ cargo.rust_library( "vendor/rusty_vault-0.2.1/src/utils/string.rs", "vendor/rusty_vault-0.2.1/src/utils/token_util.rs", "vendor/rusty_vault-0.2.1/src/utils/unix_sock_addr.rs", + "vendor/rusty_vault-0.2.1/tests/test_default_logical.rs", ], - crate = "rusty_vault", - crate_root = "vendor/rusty_vault-0.2.1/src/lib.rs", + crate = "build_script_build", + crate_root = "vendor/rusty_vault-0.2.1/build.rs", edition = "2021", env = { + "CARGO_BIN_NAME": "rvault", "CARGO_MANIFEST_DIR": "vendor/rusty_vault-0.2.1", "CARGO_PKG_AUTHORS": "", "CARGO_PKG_DESCRIPTION": "RustyVault is a powerful identity-based secrets management software, providing features such as\ncryptographic key management, encryption as a service, public key cryptography, certificates management, identity credentials\nmanagement and so forth.\n\nRustyVault's RESTful API is designed to be fully compatible with Hashicorp Vault.\n", @@ -12310,79 +20690,19 @@ cargo.rust_library( "crypto_adaptor_openssl", "default", ], - platform = { - "linux-arm64": dict( - deps = [":daemonize-0.5.0"], - ), - "linux-x86_64": dict( - deps = [":daemonize-0.5.0"], - ), - "macos-arm64": dict( - deps = [":daemonize-0.5.0"], - ), - "macos-x86_64": dict( - deps = [":daemonize-0.5.0"], - ), - }, visibility = [], - deps = [ - ":actix-rt-2.10.0", - ":actix-tls-3.4.0", - ":actix-web-4.9.0", - ":anyhow-1.0.93", - ":as-any-0.3.1", - ":async-trait-0.1.86", - ":base64-0.22.1", - ":bcrypt-0.15.1", - ":better_default-1.0.5", - ":blake2b_simd-1.0.3", - ":build-time-0.1.3", - ":chrono-0.4.39", - ":clap-4.5.28", - ":ctor-0.2.9", - ":dashmap-5.5.3", - ":delay_timer-0.11.6", - ":derivative-2.2.0", - ":derive_more-0.99.18", - ":enum-map-2.7.3", - ":env_logger-0.10.2", - ":foreign-types-0.3.2", - ":glob-0.3.1", - ":go-defer-0.1.0", - ":hcl-rs-0.16.9", - ":hex-0.4.3", - ":humantime-2.1.0", - ":ipnetwork-0.20.0", - ":lazy_static-1.5.0", - ":libc-0.2.169", - ":log-0.4.22", - ":openssl-0.10.71", - ":openssl-sys-0.9.106", - ":pem-3.0.4", - ":prettytable-0.10.0", - ":prometheus-client-0.22.3", - ":radix_trie-0.2.1", - ":rand-0.8.5", - ":regex-1.11.1", - ":rpassword-7.3.1", - ":rustls-0.23.22", - ":rustls-pemfile-2.1.3", - ":serde-1.0.217", - ":serde_bytes-0.11.15", - ":serde_derive-1.0.217", - ":serde_json-1.0.138", - ":serde_yaml-0.9.34+deprecated", - ":strum-0.25.0", - ":strum_macros-0.25.3", - ":sysexits-0.7.14", - ":sysinfo-0.31.4", - ":thiserror-1.0.65", - ":tokio-1.43.0", - ":ureq-2.10.1", - ":url-2.5.3", - ":webpki-roots-0.26.3", - ":zeroize-1.8.1", + deps = [":toml-0.8.19"], +) + +buildscript_run( + name = "rusty_vault-0.2.1-build-script-run", + package_name = "rusty_vault", + buildscript_rule = ":rusty_vault-0.2.1-build-script-build", + features = [ + "crypto_adaptor_openssl", + "default", ], + version = "0.2.1", ) cargo.rust_library( @@ -12405,49 +20725,530 @@ cargo.rust_library( "vendor/ryu-1.0.18/src/s2d.rs", "vendor/ryu-1.0.18/src/s2f.rs", ], - crate = "ryu", - crate_root = "vendor/ryu-1.0.18/src/lib.rs", - edition = "2018", + crate = "ryu", + crate_root = "vendor/ryu-1.0.18/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "salsa20-0.10.2", + srcs = [ + "vendor/salsa20-0.10.2/src/lib.rs", + "vendor/salsa20-0.10.2/src/xsalsa.rs", + ], + crate = "salsa20", + crate_root = "vendor/salsa20-0.10.2/src/lib.rs", + edition = "2021", + visibility = [], + deps = [":cipher-0.4.4"], +) + +cargo.rust_library( + name = "same-file-1.0.6", + srcs = [ + "vendor/same-file-1.0.6/src/lib.rs", + "vendor/same-file-1.0.6/src/unix.rs", + "vendor/same-file-1.0.6/src/unknown.rs", + "vendor/same-file-1.0.6/src/win.rs", + ], + crate = "same_file", + crate_root = "vendor/same-file-1.0.6/src/lib.rs", + edition = "2018", + platform = { + "windows-gnu": dict( + deps = [":winapi-util-0.1.9"], + ), + "windows-msvc": dict( + deps = [":winapi-util-0.1.9"], + ), + }, + visibility = [], +) + +cargo.rust_library( + name = "schannel-0.1.23", + srcs = [ + "vendor/schannel-0.1.23/src/alpn_list.rs", + "vendor/schannel-0.1.23/src/cert_chain.rs", + "vendor/schannel-0.1.23/src/cert_context.rs", + "vendor/schannel-0.1.23/src/cert_store.rs", + "vendor/schannel-0.1.23/src/context_buffer.rs", + "vendor/schannel-0.1.23/src/crypt_key.rs", + "vendor/schannel-0.1.23/src/crypt_prov.rs", + "vendor/schannel-0.1.23/src/ctl_context.rs", + "vendor/schannel-0.1.23/src/key_handle.rs", + "vendor/schannel-0.1.23/src/lib.rs", + "vendor/schannel-0.1.23/src/ncrypt_key.rs", + "vendor/schannel-0.1.23/src/schannel_cred.rs", + "vendor/schannel-0.1.23/src/security_context.rs", + "vendor/schannel-0.1.23/src/test.rs", + "vendor/schannel-0.1.23/src/tls_stream.rs", + ], + crate = "schannel", + crate_root = "vendor/schannel-0.1.23/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":windows-sys-0.52.0"], +) + +cargo.rust_library( + name = "scopeguard-1.2.0", + srcs = ["vendor/scopeguard-1.2.0/src/lib.rs"], + crate = "scopeguard", + crate_root = "vendor/scopeguard-1.2.0/src/lib.rs", + edition = "2015", + features = [ + "default", + "use_std", + ], + visibility = [], +) + +cargo.rust_library( + name = "scrypt-0.11.0", + srcs = [ + "vendor/scrypt-0.11.0/src/errors.rs", + "vendor/scrypt-0.11.0/src/lib.rs", + "vendor/scrypt-0.11.0/src/params.rs", + "vendor/scrypt-0.11.0/src/romix.rs", + "vendor/scrypt-0.11.0/src/simple.rs", + ], + crate = "scrypt", + crate_root = "vendor/scrypt-0.11.0/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":pbkdf2-0.12.2", + ":salsa20-0.10.2", + ":sha2-0.10.8", + ], +) + +cargo.rust_library( + name = "sea-bae-0.2.0", + srcs = ["vendor/sea-bae-0.2.0/src/lib.rs"], + crate = "sea_bae", + crate_root = "vendor/sea-bae-0.2.0/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":heck-0.4.1", + ":proc-macro-error-1.0.4", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +alias( + name = "sea-orm", + actual = ":sea-orm-1.1.4", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "sea-orm-1.1.4", + srcs = [ + "vendor/sea-orm-1.1.4/src/database/connection.rs", + "vendor/sea-orm-1.1.4/src/database/db_connection.rs", + "vendor/sea-orm-1.1.4/src/database/mock.rs", + "vendor/sea-orm-1.1.4/src/database/mod.rs", + "vendor/sea-orm-1.1.4/src/database/proxy.rs", + "vendor/sea-orm-1.1.4/src/database/statement.rs", + "vendor/sea-orm-1.1.4/src/database/stream/metric.rs", + "vendor/sea-orm-1.1.4/src/database/stream/mod.rs", + "vendor/sea-orm-1.1.4/src/database/stream/query.rs", + "vendor/sea-orm-1.1.4/src/database/stream/transaction.rs", + "vendor/sea-orm-1.1.4/src/database/transaction.rs", + "vendor/sea-orm-1.1.4/src/docs.rs", + "vendor/sea-orm-1.1.4/src/driver/mock.rs", + "vendor/sea-orm-1.1.4/src/driver/mod.rs", + "vendor/sea-orm-1.1.4/src/driver/proxy.rs", + "vendor/sea-orm-1.1.4/src/driver/sqlx_common.rs", + "vendor/sea-orm-1.1.4/src/driver/sqlx_mysql.rs", + "vendor/sea-orm-1.1.4/src/driver/sqlx_postgres.rs", + "vendor/sea-orm-1.1.4/src/driver/sqlx_sqlite.rs", + "vendor/sea-orm-1.1.4/src/entity/active_enum.rs", + "vendor/sea-orm-1.1.4/src/entity/active_model.rs", + "vendor/sea-orm-1.1.4/src/entity/base_entity.rs", + "vendor/sea-orm-1.1.4/src/entity/column.rs", + "vendor/sea-orm-1.1.4/src/entity/identity.rs", + "vendor/sea-orm-1.1.4/src/entity/link.rs", + "vendor/sea-orm-1.1.4/src/entity/mod.rs", + "vendor/sea-orm-1.1.4/src/entity/model.rs", + "vendor/sea-orm-1.1.4/src/entity/partial_model.rs", + "vendor/sea-orm-1.1.4/src/entity/prelude.rs", + "vendor/sea-orm-1.1.4/src/entity/primary_key.rs", + "vendor/sea-orm-1.1.4/src/entity/relation.rs", + "vendor/sea-orm-1.1.4/src/error.rs", + "vendor/sea-orm-1.1.4/src/executor/cursor.rs", + "vendor/sea-orm-1.1.4/src/executor/delete.rs", + "vendor/sea-orm-1.1.4/src/executor/execute.rs", + "vendor/sea-orm-1.1.4/src/executor/insert.rs", + "vendor/sea-orm-1.1.4/src/executor/mod.rs", + "vendor/sea-orm-1.1.4/src/executor/paginator.rs", + "vendor/sea-orm-1.1.4/src/executor/query.rs", + "vendor/sea-orm-1.1.4/src/executor/select.rs", + "vendor/sea-orm-1.1.4/src/executor/update.rs", + "vendor/sea-orm-1.1.4/src/lib.rs", + "vendor/sea-orm-1.1.4/src/metric.rs", + "vendor/sea-orm-1.1.4/src/query/combine.rs", + "vendor/sea-orm-1.1.4/src/query/delete.rs", + "vendor/sea-orm-1.1.4/src/query/helper.rs", + "vendor/sea-orm-1.1.4/src/query/insert.rs", + "vendor/sea-orm-1.1.4/src/query/join.rs", + "vendor/sea-orm-1.1.4/src/query/json.rs", + "vendor/sea-orm-1.1.4/src/query/loader.rs", + "vendor/sea-orm-1.1.4/src/query/mod.rs", + "vendor/sea-orm-1.1.4/src/query/select.rs", + "vendor/sea-orm-1.1.4/src/query/traits.rs", + "vendor/sea-orm-1.1.4/src/query/update.rs", + "vendor/sea-orm-1.1.4/src/query/util.rs", + "vendor/sea-orm-1.1.4/src/schema/entity.rs", + "vendor/sea-orm-1.1.4/src/schema/mod.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/cake.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/cake_expanded.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/cake_filling.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/cake_filling_price.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/cake_seaography.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/entity_linked.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/filling.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/fruit.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/indexes.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/lunch_set.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/lunch_set_expanded.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/mod.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/rust_keyword.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/sea_orm_active_enums.rs", + "vendor/sea-orm-1.1.4/src/tests_cfg/vendor.rs", + "vendor/sea-orm-1.1.4/src/util.rs", + ], + crate = "sea_orm", + crate_root = "vendor/sea-orm-1.1.4/src/lib.rs", + edition = "2021", + features = [ + "bigdecimal", + "chrono", + "default", + "macros", + "postgres-array", + "runtime-tokio", + "runtime-tokio-rustls", + "rust_decimal", + "sea-query-binder", + "serde_json", + "sqlx", + "sqlx-dep", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "time", + "uuid", + "with-bigdecimal", + "with-chrono", + "with-json", + "with-rust_decimal", + "with-time", + "with-uuid", + ], + visibility = [], + deps = [ + ":async-stream-0.3.6", + ":async-trait-0.1.86", + ":bigdecimal-0.4.6", + ":chrono-0.4.39", + ":futures-0.3.31", + ":log-0.4.22", + ":ouroboros-0.18.4", + ":rust_decimal-1.35.0", + ":sea-orm-macros-1.1.4", + ":sea-query-0.32.1", + ":sea-query-binder-0.7.0", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":sqlx-0.8.2", + ":strum-0.26.3", + ":thiserror-1.0.65", + ":time-0.3.36", + ":tracing-0.1.41", + ":url-2.5.3", + ":uuid-1.13.1", + ], +) + +cargo.rust_library( + name = "sea-orm-macros-1.1.4", + srcs = [ + "vendor/sea-orm-macros-1.1.4/src/derives/active_enum.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/active_enum_display.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/active_model.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/active_model_behavior.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/attributes.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/case_style.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/column.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/derive_iden.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/entity.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/entity_model.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/from_query_result.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/into_active_model.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/migration.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/mod.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/model.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/partial_model.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/primary_key.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/related_entity.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/relation.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/sql_type_match.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/try_getable_from_json.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/util.rs", + "vendor/sea-orm-macros-1.1.4/src/derives/value_type.rs", + "vendor/sea-orm-macros-1.1.4/src/lib.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/enum_iter.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/helpers/case_style.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/helpers/metadata.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/helpers/mod.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/helpers/type_props.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/helpers/variant_props.rs", + "vendor/sea-orm-macros-1.1.4/src/strum/mod.rs", + ], + crate = "sea_orm_macros", + crate_root = "vendor/sea-orm-macros-1.1.4/src/lib.rs", + edition = "2021", + features = [ + "bae", + "derive", + "postgres-array", + "strum", + ], + named_deps = { + "bae": ":sea-bae-0.2.0", + }, + proc_macro = True, + visibility = [], + deps = [ + ":heck-0.4.1", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ":unicode-ident-1.0.12", + ], +) + +cargo.rust_library( + name = "sea-query-0.32.1", + srcs = [ + "vendor/sea-query-0.32.1/src/backend/foreign_key_builder.rs", + "vendor/sea-query-0.32.1/src/backend/index_builder.rs", + "vendor/sea-query-0.32.1/src/backend/mod.rs", + "vendor/sea-query-0.32.1/src/backend/mysql/foreign_key.rs", + "vendor/sea-query-0.32.1/src/backend/mysql/index.rs", + "vendor/sea-query-0.32.1/src/backend/mysql/mod.rs", + "vendor/sea-query-0.32.1/src/backend/mysql/query.rs", + "vendor/sea-query-0.32.1/src/backend/mysql/table.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/extension.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/foreign_key.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/index.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/mod.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/query.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/table.rs", + "vendor/sea-query-0.32.1/src/backend/postgres/types.rs", + "vendor/sea-query-0.32.1/src/backend/query_builder.rs", + "vendor/sea-query-0.32.1/src/backend/sqlite/foreign_key.rs", + "vendor/sea-query-0.32.1/src/backend/sqlite/index.rs", + "vendor/sea-query-0.32.1/src/backend/sqlite/mod.rs", + "vendor/sea-query-0.32.1/src/backend/sqlite/query.rs", + "vendor/sea-query-0.32.1/src/backend/sqlite/table.rs", + "vendor/sea-query-0.32.1/src/backend/table_builder.rs", + "vendor/sea-query-0.32.1/src/backend/table_ref_builder.rs", + "vendor/sea-query-0.32.1/src/error.rs", + "vendor/sea-query-0.32.1/src/expr.rs", + "vendor/sea-query-0.32.1/src/extension/mod.rs", + "vendor/sea-query-0.32.1/src/extension/mysql/column.rs", + "vendor/sea-query-0.32.1/src/extension/mysql/index.rs", + "vendor/sea-query-0.32.1/src/extension/mysql/mod.rs", + "vendor/sea-query-0.32.1/src/extension/mysql/select.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/expr.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/extension.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/func.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/interval.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/ltree.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/mod.rs", + "vendor/sea-query-0.32.1/src/extension/postgres/types.rs", + "vendor/sea-query-0.32.1/src/extension/sqlite/expr.rs", + "vendor/sea-query-0.32.1/src/extension/sqlite/mod.rs", + "vendor/sea-query-0.32.1/src/foreign_key/common.rs", + "vendor/sea-query-0.32.1/src/foreign_key/create.rs", + "vendor/sea-query-0.32.1/src/foreign_key/drop.rs", + "vendor/sea-query-0.32.1/src/foreign_key/mod.rs", + "vendor/sea-query-0.32.1/src/func.rs", + "vendor/sea-query-0.32.1/src/index/common.rs", + "vendor/sea-query-0.32.1/src/index/create.rs", + "vendor/sea-query-0.32.1/src/index/drop.rs", + "vendor/sea-query-0.32.1/src/index/mod.rs", + "vendor/sea-query-0.32.1/src/lib.rs", + "vendor/sea-query-0.32.1/src/prepare.rs", + "vendor/sea-query-0.32.1/src/query/case.rs", + "vendor/sea-query-0.32.1/src/query/condition.rs", + "vendor/sea-query-0.32.1/src/query/delete.rs", + "vendor/sea-query-0.32.1/src/query/insert.rs", + "vendor/sea-query-0.32.1/src/query/mod.rs", + "vendor/sea-query-0.32.1/src/query/on_conflict.rs", + "vendor/sea-query-0.32.1/src/query/ordered.rs", + "vendor/sea-query-0.32.1/src/query/returning.rs", + "vendor/sea-query-0.32.1/src/query/select.rs", + "vendor/sea-query-0.32.1/src/query/traits.rs", + "vendor/sea-query-0.32.1/src/query/update.rs", + "vendor/sea-query-0.32.1/src/query/window.rs", + "vendor/sea-query-0.32.1/src/query/with.rs", + "vendor/sea-query-0.32.1/src/schema.rs", + "vendor/sea-query-0.32.1/src/table/alter.rs", + "vendor/sea-query-0.32.1/src/table/column.rs", + "vendor/sea-query-0.32.1/src/table/create.rs", + "vendor/sea-query-0.32.1/src/table/drop.rs", + "vendor/sea-query-0.32.1/src/table/mod.rs", + "vendor/sea-query-0.32.1/src/table/rename.rs", + "vendor/sea-query-0.32.1/src/table/truncate.rs", + "vendor/sea-query-0.32.1/src/tests_cfg.rs", + "vendor/sea-query-0.32.1/src/token.rs", + "vendor/sea-query-0.32.1/src/types.rs", + "vendor/sea-query-0.32.1/src/value.rs", + ], + crate = "sea_query", + crate_root = "vendor/sea-query-0.32.1/src/lib.rs", + edition = "2021", + features = [ + "backend-mysql", + "backend-postgres", + "backend-sqlite", + "bigdecimal", + "chrono", + "hashable-value", + "ordered-float", + "postgres-array", + "rust_decimal", + "serde_json", + "thread-safe", + "time", + "uuid", + "with-bigdecimal", + "with-chrono", + "with-json", + "with-rust_decimal", + "with-time", + "with-uuid", + ], visibility = [], + deps = [ + ":bigdecimal-0.4.6", + ":chrono-0.4.39", + ":inherent-1.0.11", + ":ordered-float-3.9.2", + ":rust_decimal-1.35.0", + ":serde_json-1.0.138", + ":time-0.3.36", + ":uuid-1.13.1", + ], ) cargo.rust_library( - name = "schannel-0.1.23", + name = "sea-query-binder-0.7.0", srcs = [ - "vendor/schannel-0.1.23/src/alpn_list.rs", - "vendor/schannel-0.1.23/src/cert_chain.rs", - "vendor/schannel-0.1.23/src/cert_context.rs", - "vendor/schannel-0.1.23/src/cert_store.rs", - "vendor/schannel-0.1.23/src/context_buffer.rs", - "vendor/schannel-0.1.23/src/crypt_key.rs", - "vendor/schannel-0.1.23/src/crypt_prov.rs", - "vendor/schannel-0.1.23/src/ctl_context.rs", - "vendor/schannel-0.1.23/src/key_handle.rs", - "vendor/schannel-0.1.23/src/lib.rs", - "vendor/schannel-0.1.23/src/ncrypt_key.rs", - "vendor/schannel-0.1.23/src/schannel_cred.rs", - "vendor/schannel-0.1.23/src/security_context.rs", - "vendor/schannel-0.1.23/src/test.rs", - "vendor/schannel-0.1.23/src/tls_stream.rs", + "vendor/sea-query-binder-0.7.0/src/lib.rs", + "vendor/sea-query-binder-0.7.0/src/sqlx.rs", + "vendor/sea-query-binder-0.7.0/src/sqlx_any.rs", + "vendor/sea-query-binder-0.7.0/src/sqlx_mysql.rs", + "vendor/sea-query-binder-0.7.0/src/sqlx_postgres.rs", + "vendor/sea-query-binder-0.7.0/src/sqlx_sqlite.rs", + "vendor/sea-query-binder-0.7.0/src/values.rs", + ], + crate = "sea_query_binder", + crate_root = "vendor/sea-query-binder-0.7.0/src/lib.rs", + edition = "2021", + features = [ + "bigdecimal", + "chrono", + "postgres-array", + "rust_decimal", + "serde_json", + "sqlx", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "time", + "uuid", + "with-bigdecimal", + "with-chrono", + "with-json", + "with-rust_decimal", + "with-time", + "with-uuid", ], - crate = "schannel", - crate_root = "vendor/schannel-0.1.23/src/lib.rs", - edition = "2018", visibility = [], - deps = [":windows-sys-0.52.0"], + deps = [ + ":bigdecimal-0.4.6", + ":chrono-0.4.39", + ":rust_decimal-1.35.0", + ":sea-query-0.32.1", + ":serde_json-1.0.138", + ":sqlx-0.8.2", + ":time-0.3.36", + ":uuid-1.13.1", + ], ) cargo.rust_library( - name = "scopeguard-1.2.0", - srcs = ["vendor/scopeguard-1.2.0/src/lib.rs"], - crate = "scopeguard", - crate_root = "vendor/scopeguard-1.2.0/src/lib.rs", + name = "seahash-4.1.0", + srcs = [ + "vendor/seahash-4.1.0/src/buffer.rs", + "vendor/seahash-4.1.0/src/helper.rs", + "vendor/seahash-4.1.0/src/impl_std.rs", + "vendor/seahash-4.1.0/src/lib.rs", + "vendor/seahash-4.1.0/src/reference.rs", + "vendor/seahash-4.1.0/src/stream.rs", + ], + crate = "seahash", + crate_root = "vendor/seahash-4.1.0/src/lib.rs", edition = "2015", + features = ["default"], + visibility = [], +) + +cargo.rust_library( + name = "sec1-0.7.3", + srcs = [ + "vendor/sec1-0.7.3/README.md", + "vendor/sec1-0.7.3/src/error.rs", + "vendor/sec1-0.7.3/src/lib.rs", + "vendor/sec1-0.7.3/src/parameters.rs", + "vendor/sec1-0.7.3/src/point.rs", + "vendor/sec1-0.7.3/src/private_key.rs", + "vendor/sec1-0.7.3/src/traits.rs", + ], + crate = "sec1", + crate_root = "vendor/sec1-0.7.3/src/lib.rs", + edition = "2021", features = [ + "alloc", "default", - "use_std", + "der", + "pem", + "pkcs8", + "point", + "std", + "subtle", + "zeroize", ], visibility = [], + deps = [ + ":base16ct-0.2.0", + ":der-0.7.9", + ":generic-array-0.14.7", + ":pkcs8-0.10.2", + ":subtle-2.6.1", + ":zeroize-1.8.1", + ], ) alias( @@ -12560,8 +21361,13 @@ cargo.rust_library( "OSX_10_10", "OSX_10_11", "OSX_10_12", + "OSX_10_13", + "OSX_10_14", "OSX_10_9", + "alpn", "default", + "serial-number-bigint", + "session-tickets", ], visibility = [], deps = [ @@ -12569,6 +21375,7 @@ cargo.rust_library( ":core-foundation-0.9.4", ":core-foundation-sys-0.8.7", ":libc-0.2.169", + ":num-bigint-0.4.6", ":security-framework-sys-2.11.1", ], ) @@ -12607,6 +21414,8 @@ cargo.rust_library( "OSX_10_10", "OSX_10_11", "OSX_10_12", + "OSX_10_13", + "OSX_10_14", "OSX_10_9", "default", ], @@ -12617,6 +21426,29 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "semver-1.0.25", + srcs = [ + "vendor/semver-1.0.25/src/backport.rs", + "vendor/semver-1.0.25/src/display.rs", + "vendor/semver-1.0.25/src/error.rs", + "vendor/semver-1.0.25/src/eval.rs", + "vendor/semver-1.0.25/src/identifier.rs", + "vendor/semver-1.0.25/src/impls.rs", + "vendor/semver-1.0.25/src/lib.rs", + "vendor/semver-1.0.25/src/parse.rs", + "vendor/semver-1.0.25/src/serde.rs", + ], + crate = "semver", + crate_root = "vendor/semver-1.0.25/src/lib.rs", + edition = "2018", + features = [ + "default", + "std", + ], + visibility = [], +) + alias( name = "serde", actual = ":serde-1.0.217", @@ -12906,6 +21738,20 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "serde_spanned-0.6.7", + srcs = [ + "vendor/serde_spanned-0.6.7/src/lib.rs", + "vendor/serde_spanned-0.6.7/src/spanned.rs", + ], + crate = "serde_spanned", + crate_root = "vendor/serde_spanned-0.6.7/src/lib.rs", + edition = "2021", + features = ["serde"], + visibility = [], + deps = [":serde-1.0.217"], +) + cargo.rust_library( name = "serde_urlencoded-0.7.1", srcs = [ @@ -12929,6 +21775,91 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "serde_with-3.12.0", + srcs = [ + "vendor/serde_with-3.12.0/src/base64.rs", + "vendor/serde_with-3.12.0/src/chrono_0_4.rs", + "vendor/serde_with-3.12.0/src/content/de.rs", + "vendor/serde_with-3.12.0/src/content/mod.rs", + "vendor/serde_with-3.12.0/src/content/ser.rs", + "vendor/serde_with-3.12.0/src/de/duplicates.rs", + "vendor/serde_with-3.12.0/src/de/impls.rs", + "vendor/serde_with-3.12.0/src/de/mod.rs", + "vendor/serde_with-3.12.0/src/de/skip_error.rs", + "vendor/serde_with-3.12.0/src/duplicate_key_impls/error_on_duplicate.rs", + "vendor/serde_with-3.12.0/src/duplicate_key_impls/first_value_wins.rs", + "vendor/serde_with-3.12.0/src/duplicate_key_impls/last_value_wins.rs", + "vendor/serde_with-3.12.0/src/duplicate_key_impls/mod.rs", + "vendor/serde_with-3.12.0/src/enum_map.rs", + "vendor/serde_with-3.12.0/src/flatten_maybe.rs", + "vendor/serde_with-3.12.0/src/formats.rs", + "vendor/serde_with-3.12.0/src/guide/feature_flags.rs", + "vendor/serde_with-3.12.0/src/hex.rs", + "vendor/serde_with-3.12.0/src/json.rs", + "vendor/serde_with-3.12.0/src/key_value_map.rs", + "vendor/serde_with-3.12.0/src/lib.rs", + "vendor/serde_with-3.12.0/src/rust.rs", + "vendor/serde_with-3.12.0/src/schemars_0_8.rs", + "vendor/serde_with-3.12.0/src/ser/duplicates.rs", + "vendor/serde_with-3.12.0/src/ser/impls.rs", + "vendor/serde_with-3.12.0/src/ser/mod.rs", + "vendor/serde_with-3.12.0/src/ser/skip_error.rs", + "vendor/serde_with-3.12.0/src/serde_conv.rs", + "vendor/serde_with-3.12.0/src/time_0_3.rs", + "vendor/serde_with-3.12.0/src/utils.rs", + "vendor/serde_with-3.12.0/src/utils/duration.rs", + "vendor/serde_with-3.12.0/src/with_prefix.rs", + "vendor/serde_with-3.12.0/src/with_suffix.rs", + ], + crate = "serde_with", + crate_root = "vendor/serde_with-3.12.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "json", + "macros", + "std", + ], + named_deps = { + "chrono_0_4": ":chrono-0.4.39", + "indexmap_1": ":indexmap-1.9.3", + "indexmap_2": ":indexmap-2.4.0", + "time_0_3": ":time-0.3.36", + }, + visibility = [], + deps = [ + ":base64-0.22.1", + ":hex-0.4.3", + ":serde-1.0.217", + ":serde_derive-1.0.217", + ":serde_json-1.0.138", + ":serde_with_macros-3.12.0", + ], +) + +cargo.rust_library( + name = "serde_with_macros-3.12.0", + srcs = [ + "vendor/serde_with_macros-3.12.0/src/apply.rs", + "vendor/serde_with_macros-3.12.0/src/lazy_bool.rs", + "vendor/serde_with_macros-3.12.0/src/lib.rs", + "vendor/serde_with_macros-3.12.0/src/utils.rs", + ], + crate = "serde_with_macros", + crate_root = "vendor/serde_with_macros-3.12.0/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":darling-0.20.10", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "serde_yaml-0.9.34+deprecated", srcs = [ @@ -12970,6 +21901,12 @@ cargo.rust_library( ], ) +alias( + name = "sha1", + actual = ":sha1-0.10.6", + visibility = ["PUBLIC"], +) + cargo.rust_library( name = "sha1-0.10.6", srcs = [ @@ -13015,6 +21952,190 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "sha2-0.10.8", + srcs = [ + "vendor/sha2-0.10.8/src/consts.rs", + "vendor/sha2-0.10.8/src/core_api.rs", + "vendor/sha2-0.10.8/src/lib.rs", + "vendor/sha2-0.10.8/src/sha256.rs", + "vendor/sha2-0.10.8/src/sha256/aarch64.rs", + "vendor/sha2-0.10.8/src/sha256/loongarch64_asm.rs", + "vendor/sha2-0.10.8/src/sha256/soft.rs", + "vendor/sha2-0.10.8/src/sha256/x86.rs", + "vendor/sha2-0.10.8/src/sha512.rs", + "vendor/sha2-0.10.8/src/sha512/aarch64.rs", + "vendor/sha2-0.10.8/src/sha512/loongarch64_asm.rs", + "vendor/sha2-0.10.8/src/sha512/soft.rs", + "vendor/sha2-0.10.8/src/sha512/x86.rs", + ], + crate = "sha2", + crate_root = "vendor/sha2-0.10.8/src/lib.rs", + edition = "2018", + features = [ + "default", + "oid", + "std", + ], + platform = { + "linux-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":digest-0.10.7", + ], +) + +cargo.rust_library( + name = "sha2-0.9.9", + srcs = [ + "vendor/sha2-0.9.9/src/consts.rs", + "vendor/sha2-0.9.9/src/lib.rs", + "vendor/sha2-0.9.9/src/sha256.rs", + "vendor/sha2-0.9.9/src/sha256/aarch64.rs", + "vendor/sha2-0.9.9/src/sha256/soft.rs", + "vendor/sha2-0.9.9/src/sha256/x86.rs", + "vendor/sha2-0.9.9/src/sha512.rs", + "vendor/sha2-0.9.9/src/sha512/soft.rs", + "vendor/sha2-0.9.9/src/sha512/x86.rs", + ], + crate = "sha2", + crate_root = "vendor/sha2-0.9.9/src/lib.rs", + edition = "2018", + features = [ + "default", + "std", + ], + platform = { + "linux-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "linux-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-arm64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "macos-x86_64": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-gnu": dict( + deps = [":cpufeatures-0.2.13"], + ), + "windows-msvc": dict( + deps = [":cpufeatures-0.2.13"], + ), + }, + visibility = [], + deps = [ + ":block-buffer-0.9.0", + ":cfg-if-1.0.0", + ":digest-0.9.0", + ":opaque-debug-0.3.1", + ], +) + +cargo.rust_library( + name = "sha3-0.10.8", + srcs = [ + "vendor/sha3-0.10.8/src/lib.rs", + "vendor/sha3-0.10.8/src/macros.rs", + "vendor/sha3-0.10.8/src/state.rs", + ], + crate = "sha3", + crate_root = "vendor/sha3-0.10.8/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":digest-0.10.7", + ":keccak-0.1.5", + ], +) + +alias( + name = "shadow-rs", + actual = ":shadow-rs-0.36.0", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "shadow-rs-0.36.0", + srcs = [ + "vendor/shadow-rs-0.36.0/src/build.rs", + "vendor/shadow-rs-0.36.0/src/ci.rs", + "vendor/shadow-rs-0.36.0/src/date_time.rs", + "vendor/shadow-rs-0.36.0/src/env.rs", + "vendor/shadow-rs-0.36.0/src/err.rs", + "vendor/shadow-rs-0.36.0/src/gen_const.rs", + "vendor/shadow-rs-0.36.0/src/git.rs", + "vendor/shadow-rs-0.36.0/src/hook.rs", + "vendor/shadow-rs-0.36.0/src/lib.rs", + ], + crate = "shadow_rs", + crate_root = "vendor/shadow-rs-0.36.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "git2", + "tzdb", + ], + visibility = [], + deps = [ + ":const_format-0.2.32", + ":git2-0.19.0", + ":is_debug-1.0.1", + ":time-0.3.36", + ":tzdb-0.6.1", + ], +) + +cargo.rust_library( + name = "sharded-slab-0.1.7", + srcs = [ + "vendor/sharded-slab-0.1.7/src/cfg.rs", + "vendor/sharded-slab-0.1.7/src/clear.rs", + "vendor/sharded-slab-0.1.7/src/implementation.rs", + "vendor/sharded-slab-0.1.7/src/iter.rs", + "vendor/sharded-slab-0.1.7/src/lib.rs", + "vendor/sharded-slab-0.1.7/src/macros.rs", + "vendor/sharded-slab-0.1.7/src/page/mod.rs", + "vendor/sharded-slab-0.1.7/src/page/slot.rs", + "vendor/sharded-slab-0.1.7/src/page/stack.rs", + "vendor/sharded-slab-0.1.7/src/pool.rs", + "vendor/sharded-slab-0.1.7/src/shard.rs", + "vendor/sharded-slab-0.1.7/src/sync.rs", + "vendor/sharded-slab-0.1.7/src/tests/custom_config.rs", + "vendor/sharded-slab-0.1.7/src/tests/loom_pool.rs", + "vendor/sharded-slab-0.1.7/src/tests/loom_slab.rs", + "vendor/sharded-slab-0.1.7/src/tests/mod.rs", + "vendor/sharded-slab-0.1.7/src/tests/properties.rs", + "vendor/sharded-slab-0.1.7/src/tid.rs", + ], + crate = "sharded_slab", + crate_root = "vendor/sharded-slab-0.1.7/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":lazy_static-1.5.0"], +) + cargo.rust_library( name = "shlex-1.3.0", srcs = [ @@ -13037,11 +22158,83 @@ cargo.rust_library( "vendor/signal-hook-registry-1.4.2/src/half_lock.rs", "vendor/signal-hook-registry-1.4.2/src/lib.rs", ], - crate = "signal_hook_registry", - crate_root = "vendor/signal-hook-registry-1.4.2/src/lib.rs", - edition = "2015", + crate = "signal_hook_registry", + crate_root = "vendor/signal-hook-registry-1.4.2/src/lib.rs", + edition = "2015", + visibility = [], + deps = [":libc-0.2.169"], +) + +cargo.rust_library( + name = "signature-2.2.0", + srcs = [ + "vendor/signature-2.2.0/README.md", + "vendor/signature-2.2.0/src/encoding.rs", + "vendor/signature-2.2.0/src/error.rs", + "vendor/signature-2.2.0/src/hazmat.rs", + "vendor/signature-2.2.0/src/keypair.rs", + "vendor/signature-2.2.0/src/lib.rs", + "vendor/signature-2.2.0/src/prehash_signature.rs", + "vendor/signature-2.2.0/src/signer.rs", + "vendor/signature-2.2.0/src/verifier.rs", + ], + crate = "signature", + crate_root = "vendor/signature-2.2.0/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "digest", + "rand_core", + "std", + ], + visibility = [], + deps = [ + ":digest-0.10.7", + ":rand_core-0.6.4", + ], +) + +cargo.rust_library( + name = "simdutf8-0.1.4", + srcs = [ + "vendor/simdutf8-0.1.4/src/basic.rs", + "vendor/simdutf8-0.1.4/src/compat.rs", + "vendor/simdutf8-0.1.4/src/implementation/aarch64/mod.rs", + "vendor/simdutf8-0.1.4/src/implementation/aarch64/neon.rs", + "vendor/simdutf8-0.1.4/src/implementation/algorithm.rs", + "vendor/simdutf8-0.1.4/src/implementation/helpers.rs", + "vendor/simdutf8-0.1.4/src/implementation/mod.rs", + "vendor/simdutf8-0.1.4/src/implementation/wasm32/mod.rs", + "vendor/simdutf8-0.1.4/src/implementation/wasm32/simd128.rs", + "vendor/simdutf8-0.1.4/src/implementation/x86/avx2.rs", + "vendor/simdutf8-0.1.4/src/implementation/x86/mod.rs", + "vendor/simdutf8-0.1.4/src/implementation/x86/sse42.rs", + "vendor/simdutf8-0.1.4/src/lib.rs", + ], + crate = "simdutf8", + crate_root = "vendor/simdutf8-0.1.4/src/lib.rs", + edition = "2018", + features = ["std"], + visibility = [], +) + +cargo.rust_library( + name = "siphasher-0.3.11", + srcs = [ + "vendor/siphasher-0.3.11/src/lib.rs", + "vendor/siphasher-0.3.11/src/sip.rs", + "vendor/siphasher-0.3.11/src/sip128.rs", + "vendor/siphasher-0.3.11/src/tests.rs", + "vendor/siphasher-0.3.11/src/tests128.rs", + ], + crate = "siphasher", + crate_root = "vendor/siphasher-0.3.11/src/lib.rs", + edition = "2018", + features = [ + "default", + "std", + ], visibility = [], - deps = [":libc-0.2.169"], ) cargo.rust_library( @@ -13104,6 +22297,28 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "smol_str-0.3.1", + srcs = [ + "vendor/smol_str-0.3.1/src/borsh.rs", + "vendor/smol_str-0.3.1/src/lib.rs", + "vendor/smol_str-0.3.1/src/serde.rs", + ], + crate = "smol_str", + crate_root = "vendor/smol_str-0.3.1/src/lib.rs", + edition = "2021", + features = [ + "default", + "serde", + "std", + ], + visibility = [], + deps = [ + ":borsh-1.5.1", + ":serde-1.0.217", + ], +) + cargo.rust_library( name = "socket2-0.4.10", srcs = [ @@ -13114,102 +22329,908 @@ cargo.rust_library( "vendor/socket2-0.4.10/src/sys/unix.rs", "vendor/socket2-0.4.10/src/sys/windows.rs", ], - crate = "socket2", - crate_root = "vendor/socket2-0.4.10/src/lib.rs", - edition = "2018", - features = ["all"], + crate = "socket2", + crate_root = "vendor/socket2-0.4.10/src/lib.rs", + edition = "2018", + features = ["all"], + platform = { + "linux-arm64": dict( + deps = [":libc-0.2.169"], + ), + "linux-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "macos-arm64": dict( + deps = [":libc-0.2.169"], + ), + "macos-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "windows-gnu": dict( + deps = [":winapi-0.3.9"], + ), + "windows-msvc": dict( + deps = [":winapi-0.3.9"], + ), + }, + visibility = [], +) + +cargo.rust_library( + name = "socket2-0.5.7", + srcs = [ + "vendor/socket2-0.5.7/src/lib.rs", + "vendor/socket2-0.5.7/src/sockaddr.rs", + "vendor/socket2-0.5.7/src/socket.rs", + "vendor/socket2-0.5.7/src/sockref.rs", + "vendor/socket2-0.5.7/src/sys/unix.rs", + "vendor/socket2-0.5.7/src/sys/windows.rs", + ], + crate = "socket2", + crate_root = "vendor/socket2-0.5.7/src/lib.rs", + edition = "2021", + features = ["all"], + platform = { + "linux-arm64": dict( + deps = [":libc-0.2.169"], + ), + "linux-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "macos-arm64": dict( + deps = [":libc-0.2.169"], + ), + "macos-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "windows-gnu": dict( + deps = [":windows-sys-0.52.0"], + ), + "windows-msvc": dict( + deps = [":windows-sys-0.52.0"], + ), + }, + visibility = [], +) + +cargo.rust_library( + name = "spin-0.9.8", + srcs = [ + "vendor/spin-0.9.8/src/barrier.rs", + "vendor/spin-0.9.8/src/lazy.rs", + "vendor/spin-0.9.8/src/lib.rs", + "vendor/spin-0.9.8/src/mutex.rs", + "vendor/spin-0.9.8/src/mutex/fair.rs", + "vendor/spin-0.9.8/src/mutex/spin.rs", + "vendor/spin-0.9.8/src/mutex/ticket.rs", + "vendor/spin-0.9.8/src/once.rs", + "vendor/spin-0.9.8/src/relax.rs", + "vendor/spin-0.9.8/src/rwlock.rs", + ], + crate = "spin", + crate_root = "vendor/spin-0.9.8/src/lib.rs", + edition = "2015", + features = [ + "barrier", + "default", + "lazy", + "lock_api", + "lock_api_crate", + "mutex", + "once", + "rwlock", + "spin_mutex", + ], + named_deps = { + "lock_api_crate": ":lock_api-0.4.12", + }, + visibility = [], +) + +cargo.rust_library( + name = "spki-0.7.3", + srcs = [ + "vendor/spki-0.7.3/README.md", + "vendor/spki-0.7.3/src/algorithm.rs", + "vendor/spki-0.7.3/src/error.rs", + "vendor/spki-0.7.3/src/fingerprint.rs", + "vendor/spki-0.7.3/src/lib.rs", + "vendor/spki-0.7.3/src/spki.rs", + "vendor/spki-0.7.3/src/traits.rs", + ], + crate = "spki", + crate_root = "vendor/spki-0.7.3/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "pem", + "std", + ], + visibility = [], + deps = [ + ":base64ct-1.6.0", + ":der-0.7.9", + ], +) + +cargo.rust_library( + name = "sqlformat-0.2.4", + srcs = [ + "vendor/sqlformat-0.2.4/src/formatter.rs", + "vendor/sqlformat-0.2.4/src/indentation.rs", + "vendor/sqlformat-0.2.4/src/inline_block.rs", + "vendor/sqlformat-0.2.4/src/lib.rs", + "vendor/sqlformat-0.2.4/src/params.rs", + "vendor/sqlformat-0.2.4/src/tokenizer.rs", + ], + crate = "sqlformat", + crate_root = "vendor/sqlformat-0.2.4/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":nom-7.1.3", + ":unicode_categories-0.1.1", + ], +) + +cargo.rust_library( + name = "sqlx-0.8.2", + srcs = [ + "vendor/sqlx-0.8.2/src/any/mod.rs", + "vendor/sqlx-0.8.2/src/lib.md", + "vendor/sqlx-0.8.2/src/lib.rs", + "vendor/sqlx-0.8.2/src/macros/mod.rs", + "vendor/sqlx-0.8.2/src/spec_error.rs", + "vendor/sqlx-0.8.2/src/ty_match.rs", + ], + crate = "sqlx", + crate_root = "vendor/sqlx-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "_rt-tokio", + "bigdecimal", + "chrono", + "json", + "mysql", + "postgres", + "runtime-tokio", + "runtime-tokio-rustls", + "rust_decimal", + "sqlite", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "time", + "tls-rustls-ring", + "uuid", + ], + visibility = [], + deps = [ + ":sqlx-core-0.8.2", + ":sqlx-macros-0.8.2", + ":sqlx-mysql-0.8.2", + ":sqlx-postgres-0.8.2", + ":sqlx-sqlite-0.8.2", + ], +) + +cargo.rust_library( + name = "sqlx-core-0.8.2", + srcs = [ + "vendor/sqlx-core-0.8.2/src/acquire.rs", + "vendor/sqlx-core-0.8.2/src/any/arguments.rs", + "vendor/sqlx-core-0.8.2/src/any/column.rs", + "vendor/sqlx-core-0.8.2/src/any/connection/backend.rs", + "vendor/sqlx-core-0.8.2/src/any/connection/executor.rs", + "vendor/sqlx-core-0.8.2/src/any/connection/mod.rs", + "vendor/sqlx-core-0.8.2/src/any/database.rs", + "vendor/sqlx-core-0.8.2/src/any/driver.rs", + "vendor/sqlx-core-0.8.2/src/any/error.rs", + "vendor/sqlx-core-0.8.2/src/any/kind.rs", + "vendor/sqlx-core-0.8.2/src/any/migrate.rs", + "vendor/sqlx-core-0.8.2/src/any/mod.rs", + "vendor/sqlx-core-0.8.2/src/any/options.rs", + "vendor/sqlx-core-0.8.2/src/any/query_result.rs", + "vendor/sqlx-core-0.8.2/src/any/row.rs", + "vendor/sqlx-core-0.8.2/src/any/statement.rs", + "vendor/sqlx-core-0.8.2/src/any/transaction.rs", + "vendor/sqlx-core-0.8.2/src/any/type_info.rs", + "vendor/sqlx-core-0.8.2/src/any/types/blob.rs", + "vendor/sqlx-core-0.8.2/src/any/types/bool.rs", + "vendor/sqlx-core-0.8.2/src/any/types/float.rs", + "vendor/sqlx-core-0.8.2/src/any/types/int.rs", + "vendor/sqlx-core-0.8.2/src/any/types/mod.rs", + "vendor/sqlx-core-0.8.2/src/any/types/str.rs", + "vendor/sqlx-core-0.8.2/src/any/value.rs", + "vendor/sqlx-core-0.8.2/src/arguments.rs", + "vendor/sqlx-core-0.8.2/src/column.rs", + "vendor/sqlx-core-0.8.2/src/common/mod.rs", + "vendor/sqlx-core-0.8.2/src/common/statement_cache.rs", + "vendor/sqlx-core-0.8.2/src/connection.rs", + "vendor/sqlx-core-0.8.2/src/database.rs", + "vendor/sqlx-core-0.8.2/src/decode.rs", + "vendor/sqlx-core-0.8.2/src/describe.rs", + "vendor/sqlx-core-0.8.2/src/encode.rs", + "vendor/sqlx-core-0.8.2/src/error.rs", + "vendor/sqlx-core-0.8.2/src/executor.rs", + "vendor/sqlx-core-0.8.2/src/ext/async_stream.rs", + "vendor/sqlx-core-0.8.2/src/ext/mod.rs", + "vendor/sqlx-core-0.8.2/src/ext/ustr.rs", + "vendor/sqlx-core-0.8.2/src/from_row.rs", + "vendor/sqlx-core-0.8.2/src/fs.rs", + "vendor/sqlx-core-0.8.2/src/io/buf.rs", + "vendor/sqlx-core-0.8.2/src/io/buf_mut.rs", + "vendor/sqlx-core-0.8.2/src/io/buf_stream.rs", + "vendor/sqlx-core-0.8.2/src/io/decode.rs", + "vendor/sqlx-core-0.8.2/src/io/encode.rs", + "vendor/sqlx-core-0.8.2/src/io/mod.rs", + "vendor/sqlx-core-0.8.2/src/io/read_buf.rs", + "vendor/sqlx-core-0.8.2/src/io/write_and_flush.rs", + "vendor/sqlx-core-0.8.2/src/lib.rs", + "vendor/sqlx-core-0.8.2/src/logger.rs", + "vendor/sqlx-core-0.8.2/src/migrate/error.rs", + "vendor/sqlx-core-0.8.2/src/migrate/migrate.rs", + "vendor/sqlx-core-0.8.2/src/migrate/migration.rs", + "vendor/sqlx-core-0.8.2/src/migrate/migration_type.rs", + "vendor/sqlx-core-0.8.2/src/migrate/migrator.rs", + "vendor/sqlx-core-0.8.2/src/migrate/mod.rs", + "vendor/sqlx-core-0.8.2/src/migrate/source.rs", + "vendor/sqlx-core-0.8.2/src/net/mod.rs", + "vendor/sqlx-core-0.8.2/src/net/socket/buffered.rs", + "vendor/sqlx-core-0.8.2/src/net/socket/mod.rs", + "vendor/sqlx-core-0.8.2/src/net/tls/mod.rs", + "vendor/sqlx-core-0.8.2/src/net/tls/tls_native_tls.rs", + "vendor/sqlx-core-0.8.2/src/net/tls/tls_rustls.rs", + "vendor/sqlx-core-0.8.2/src/net/tls/util.rs", + "vendor/sqlx-core-0.8.2/src/pool/connection.rs", + "vendor/sqlx-core-0.8.2/src/pool/executor.rs", + "vendor/sqlx-core-0.8.2/src/pool/inner.rs", + "vendor/sqlx-core-0.8.2/src/pool/maybe.rs", + "vendor/sqlx-core-0.8.2/src/pool/mod.rs", + "vendor/sqlx-core-0.8.2/src/pool/options.rs", + "vendor/sqlx-core-0.8.2/src/query.rs", + "vendor/sqlx-core-0.8.2/src/query_as.rs", + "vendor/sqlx-core-0.8.2/src/query_builder.rs", + "vendor/sqlx-core-0.8.2/src/query_scalar.rs", + "vendor/sqlx-core-0.8.2/src/raw_sql.rs", + "vendor/sqlx-core-0.8.2/src/row.rs", + "vendor/sqlx-core-0.8.2/src/rt/mod.rs", + "vendor/sqlx-core-0.8.2/src/rt/rt_async_std/mod.rs", + "vendor/sqlx-core-0.8.2/src/rt/rt_async_std/socket.rs", + "vendor/sqlx-core-0.8.2/src/rt/rt_tokio/mod.rs", + "vendor/sqlx-core-0.8.2/src/rt/rt_tokio/socket.rs", + "vendor/sqlx-core-0.8.2/src/statement.rs", + "vendor/sqlx-core-0.8.2/src/sync.rs", + "vendor/sqlx-core-0.8.2/src/testing/fixtures.rs", + "vendor/sqlx-core-0.8.2/src/testing/mod.rs", + "vendor/sqlx-core-0.8.2/src/transaction.rs", + "vendor/sqlx-core-0.8.2/src/type_checking.rs", + "vendor/sqlx-core-0.8.2/src/type_info.rs", + "vendor/sqlx-core-0.8.2/src/types/bstr.rs", + "vendor/sqlx-core-0.8.2/src/types/json.rs", + "vendor/sqlx-core-0.8.2/src/types/mod.rs", + "vendor/sqlx-core-0.8.2/src/types/non_zero.rs", + "vendor/sqlx-core-0.8.2/src/types/text.rs", + "vendor/sqlx-core-0.8.2/src/value.rs", + ], + crate = "sqlx_core", + crate_root = "vendor/sqlx-core-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "_rt-tokio", + "_tls-rustls", + "_tls-rustls-ring", + "any", + "bigdecimal", + "chrono", + "crc", + "default", + "json", + "migrate", + "offline", + "rust_decimal", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "sha2", + "time", + "tokio", + "tokio-stream", + "uuid", + "webpki-roots", + ], + visibility = [], + deps = [ + ":atoi-2.0.0", + ":bigdecimal-0.4.6", + ":byteorder-1.5.0", + ":bytes-1.10.0", + ":chrono-0.4.39", + ":crc-3.2.1", + ":crossbeam-queue-0.3.11", + ":either-1.13.0", + ":event-listener-5.3.0", + ":futures-channel-0.3.31", + ":futures-core-0.3.31", + ":futures-intrusive-0.5.0", + ":futures-io-0.3.31", + ":futures-util-0.3.31", + ":hashbrown-0.14.5", + ":hashlink-0.9.1", + ":hex-0.4.3", + ":indexmap-2.4.0", + ":log-0.4.22", + ":memchr-2.7.4", + ":once_cell-1.20.3", + ":paste-1.0.15", + ":percent-encoding-2.3.1", + ":rust_decimal-1.35.0", + ":rustls-0.23.22", + ":rustls-pemfile-2.1.3", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":sha2-0.10.8", + ":smallvec-1.13.2", + ":sqlformat-0.2.4", + ":thiserror-1.0.65", + ":time-0.3.36", + ":tokio-1.43.0", + ":tokio-stream-0.1.17", + ":tracing-0.1.41", + ":url-2.5.3", + ":uuid-1.13.1", + ":webpki-roots-0.26.3", + ], +) + +cargo.rust_library( + name = "sqlx-macros-0.8.2", + srcs = ["vendor/sqlx-macros-0.8.2/src/lib.rs"], + crate = "sqlx_macros", + crate_root = "vendor/sqlx-macros-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "_rt-tokio", + "_tls-rustls-ring", + "bigdecimal", + "chrono", + "default", + "json", + "mysql", + "postgres", + "rust_decimal", + "sqlite", + "time", + "uuid", + ], + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":sqlx-core-0.8.2", + ":sqlx-macros-core-0.8.2", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "sqlx-macros-core-0.8.2", + srcs = [ + "vendor/sqlx-macros-core-0.8.2/src/common.rs", + "vendor/sqlx-macros-core-0.8.2/src/database/impls.rs", + "vendor/sqlx-macros-core-0.8.2/src/database/mod.rs", + "vendor/sqlx-macros-core-0.8.2/src/derives/attributes.rs", + "vendor/sqlx-macros-core-0.8.2/src/derives/decode.rs", + "vendor/sqlx-macros-core-0.8.2/src/derives/encode.rs", + "vendor/sqlx-macros-core-0.8.2/src/derives/mod.rs", + "vendor/sqlx-macros-core-0.8.2/src/derives/row.rs", + "vendor/sqlx-macros-core-0.8.2/src/derives/type.rs", + "vendor/sqlx-macros-core-0.8.2/src/lib.rs", + "vendor/sqlx-macros-core-0.8.2/src/migrate.rs", + "vendor/sqlx-macros-core-0.8.2/src/query/args.rs", + "vendor/sqlx-macros-core-0.8.2/src/query/data.rs", + "vendor/sqlx-macros-core-0.8.2/src/query/input.rs", + "vendor/sqlx-macros-core-0.8.2/src/query/mod.rs", + "vendor/sqlx-macros-core-0.8.2/src/query/output.rs", + "vendor/sqlx-macros-core-0.8.2/src/test_attr.rs", + ], + crate = "sqlx_macros_core", + crate_root = "vendor/sqlx-macros-core-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "_rt-tokio", + "_tls-rustls-ring", + "bigdecimal", + "chrono", + "default", + "json", + "mysql", + "postgres", + "rust_decimal", + "sqlite", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "time", + "tokio", + "uuid", + ], + visibility = [], + deps = [ + ":dotenvy-0.15.7", + ":either-1.13.0", + ":heck-0.5.0", + ":hex-0.4.3", + ":once_cell-1.20.3", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":sha2-0.10.8", + ":sqlx-core-0.8.2", + ":sqlx-mysql-0.8.2", + ":sqlx-postgres-0.8.2", + ":sqlx-sqlite-0.8.2", + ":syn-2.0.87", + ":tempfile-3.16.0", + ":tokio-1.43.0", + ":url-2.5.3", + ], +) + +cargo.rust_library( + name = "sqlx-mysql-0.8.2", + srcs = [ + "vendor/sqlx-mysql-0.8.2/src/any.rs", + "vendor/sqlx-mysql-0.8.2/src/arguments.rs", + "vendor/sqlx-mysql-0.8.2/src/collation.rs", + "vendor/sqlx-mysql-0.8.2/src/column.rs", + "vendor/sqlx-mysql-0.8.2/src/connection/auth.rs", + "vendor/sqlx-mysql-0.8.2/src/connection/establish.rs", + "vendor/sqlx-mysql-0.8.2/src/connection/executor.rs", + "vendor/sqlx-mysql-0.8.2/src/connection/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/connection/stream.rs", + "vendor/sqlx-mysql-0.8.2/src/connection/tls.rs", + "vendor/sqlx-mysql-0.8.2/src/database.rs", + "vendor/sqlx-mysql-0.8.2/src/error.rs", + "vendor/sqlx-mysql-0.8.2/src/io/buf.rs", + "vendor/sqlx-mysql-0.8.2/src/io/buf_mut.rs", + "vendor/sqlx-mysql-0.8.2/src/io/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/lib.rs", + "vendor/sqlx-mysql-0.8.2/src/migrate.rs", + "vendor/sqlx-mysql-0.8.2/src/options/connect.rs", + "vendor/sqlx-mysql-0.8.2/src/options/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/options/parse.rs", + "vendor/sqlx-mysql-0.8.2/src/options/ssl_mode.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/auth.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/capabilities.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/connect/auth_switch.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/connect/handshake.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/connect/handshake_response.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/connect/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/connect/ssl_request.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/packet.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/response/eof.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/response/err.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/response/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/response/ok.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/response/status.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/row.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/statement/execute.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/statement/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/statement/prepare.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/statement/prepare_ok.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/statement/row.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/statement/stmt_close.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/text/column.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/text/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/text/ping.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/text/query.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/text/quit.rs", + "vendor/sqlx-mysql-0.8.2/src/protocol/text/row.rs", + "vendor/sqlx-mysql-0.8.2/src/query_result.rs", + "vendor/sqlx-mysql-0.8.2/src/row.rs", + "vendor/sqlx-mysql-0.8.2/src/statement.rs", + "vendor/sqlx-mysql-0.8.2/src/testing/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/transaction.rs", + "vendor/sqlx-mysql-0.8.2/src/type_checking.rs", + "vendor/sqlx-mysql-0.8.2/src/type_info.rs", + "vendor/sqlx-mysql-0.8.2/src/types/bigdecimal.rs", + "vendor/sqlx-mysql-0.8.2/src/types/bool.rs", + "vendor/sqlx-mysql-0.8.2/src/types/bytes.rs", + "vendor/sqlx-mysql-0.8.2/src/types/chrono.rs", + "vendor/sqlx-mysql-0.8.2/src/types/float.rs", + "vendor/sqlx-mysql-0.8.2/src/types/inet.rs", + "vendor/sqlx-mysql-0.8.2/src/types/int.rs", + "vendor/sqlx-mysql-0.8.2/src/types/json.rs", + "vendor/sqlx-mysql-0.8.2/src/types/mod.rs", + "vendor/sqlx-mysql-0.8.2/src/types/mysql_time.rs", + "vendor/sqlx-mysql-0.8.2/src/types/rust_decimal.rs", + "vendor/sqlx-mysql-0.8.2/src/types/str.rs", + "vendor/sqlx-mysql-0.8.2/src/types/text.rs", + "vendor/sqlx-mysql-0.8.2/src/types/time.rs", + "vendor/sqlx-mysql-0.8.2/src/types/uint.rs", + "vendor/sqlx-mysql-0.8.2/src/types/uuid.rs", + "vendor/sqlx-mysql-0.8.2/src/value.rs", + ], + crate = "sqlx_mysql", + crate_root = "vendor/sqlx-mysql-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "bigdecimal", + "chrono", + "json", + "migrate", + "offline", + "rust_decimal", + "serde", + "time", + "uuid", + ], + visibility = [], + deps = [ + ":atoi-2.0.0", + ":base64-0.22.1", + ":bigdecimal-0.4.6", + ":bitflags-2.6.0", + ":byteorder-1.5.0", + ":bytes-1.10.0", + ":chrono-0.4.39", + ":crc-3.2.1", + ":digest-0.10.7", + ":dotenvy-0.15.7", + ":either-1.13.0", + ":futures-channel-0.3.31", + ":futures-core-0.3.31", + ":futures-io-0.3.31", + ":futures-util-0.3.31", + ":generic-array-0.14.7", + ":hex-0.4.3", + ":hkdf-0.12.4", + ":hmac-0.12.1", + ":itoa-1.0.11", + ":log-0.4.22", + ":md-5-0.10.6", + ":memchr-2.7.4", + ":once_cell-1.20.3", + ":percent-encoding-2.3.1", + ":rand-0.8.5", + ":rsa-0.9.6", + ":rust_decimal-1.35.0", + ":serde-1.0.217", + ":sha1-0.10.6", + ":sha2-0.10.8", + ":smallvec-1.13.2", + ":sqlx-core-0.8.2", + ":stringprep-0.1.5", + ":thiserror-1.0.65", + ":time-0.3.36", + ":tracing-0.1.41", + ":uuid-1.13.1", + ":whoami-1.5.1", + ], +) + +cargo.rust_library( + name = "sqlx-postgres-0.8.2", + srcs = [ + "vendor/sqlx-postgres-0.8.2/src/advisory_lock.rs", + "vendor/sqlx-postgres-0.8.2/src/any.rs", + "vendor/sqlx-postgres-0.8.2/src/arguments.rs", + "vendor/sqlx-postgres-0.8.2/src/column.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/describe.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/establish.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/executor.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/sasl.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/stream.rs", + "vendor/sqlx-postgres-0.8.2/src/connection/tls.rs", + "vendor/sqlx-postgres-0.8.2/src/copy.rs", + "vendor/sqlx-postgres-0.8.2/src/database.rs", + "vendor/sqlx-postgres-0.8.2/src/error.rs", + "vendor/sqlx-postgres-0.8.2/src/io/buf_mut.rs", + "vendor/sqlx-postgres-0.8.2/src/io/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/lib.rs", + "vendor/sqlx-postgres-0.8.2/src/listener.rs", + "vendor/sqlx-postgres-0.8.2/src/message/authentication.rs", + "vendor/sqlx-postgres-0.8.2/src/message/backend_key_data.rs", + "vendor/sqlx-postgres-0.8.2/src/message/bind.rs", + "vendor/sqlx-postgres-0.8.2/src/message/close.rs", + "vendor/sqlx-postgres-0.8.2/src/message/command_complete.rs", + "vendor/sqlx-postgres-0.8.2/src/message/copy.rs", + "vendor/sqlx-postgres-0.8.2/src/message/data_row.rs", + "vendor/sqlx-postgres-0.8.2/src/message/describe.rs", + "vendor/sqlx-postgres-0.8.2/src/message/execute.rs", + "vendor/sqlx-postgres-0.8.2/src/message/flush.rs", + "vendor/sqlx-postgres-0.8.2/src/message/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/message/notification.rs", + "vendor/sqlx-postgres-0.8.2/src/message/parameter_description.rs", + "vendor/sqlx-postgres-0.8.2/src/message/parameter_status.rs", + "vendor/sqlx-postgres-0.8.2/src/message/parse.rs", + "vendor/sqlx-postgres-0.8.2/src/message/parse_complete.rs", + "vendor/sqlx-postgres-0.8.2/src/message/password.rs", + "vendor/sqlx-postgres-0.8.2/src/message/query.rs", + "vendor/sqlx-postgres-0.8.2/src/message/ready_for_query.rs", + "vendor/sqlx-postgres-0.8.2/src/message/response.rs", + "vendor/sqlx-postgres-0.8.2/src/message/row_description.rs", + "vendor/sqlx-postgres-0.8.2/src/message/sasl.rs", + "vendor/sqlx-postgres-0.8.2/src/message/ssl_request.rs", + "vendor/sqlx-postgres-0.8.2/src/message/startup.rs", + "vendor/sqlx-postgres-0.8.2/src/message/sync.rs", + "vendor/sqlx-postgres-0.8.2/src/message/terminate.rs", + "vendor/sqlx-postgres-0.8.2/src/migrate.rs", + "vendor/sqlx-postgres-0.8.2/src/options/connect.rs", + "vendor/sqlx-postgres-0.8.2/src/options/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/options/parse.rs", + "vendor/sqlx-postgres-0.8.2/src/options/pgpass.rs", + "vendor/sqlx-postgres-0.8.2/src/options/ssl_mode.rs", + "vendor/sqlx-postgres-0.8.2/src/query_result.rs", + "vendor/sqlx-postgres-0.8.2/src/row.rs", + "vendor/sqlx-postgres-0.8.2/src/statement.rs", + "vendor/sqlx-postgres-0.8.2/src/testing/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/transaction.rs", + "vendor/sqlx-postgres-0.8.2/src/type_checking.rs", + "vendor/sqlx-postgres-0.8.2/src/type_info.rs", + "vendor/sqlx-postgres-0.8.2/src/types/array.rs", + "vendor/sqlx-postgres-0.8.2/src/types/bigdecimal.rs", + "vendor/sqlx-postgres-0.8.2/src/types/bigdecimal-range.md", + "vendor/sqlx-postgres-0.8.2/src/types/bit_vec.rs", + "vendor/sqlx-postgres-0.8.2/src/types/bool.rs", + "vendor/sqlx-postgres-0.8.2/src/types/bytes.rs", + "vendor/sqlx-postgres-0.8.2/src/types/chrono/date.rs", + "vendor/sqlx-postgres-0.8.2/src/types/chrono/datetime.rs", + "vendor/sqlx-postgres-0.8.2/src/types/chrono/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/types/chrono/time.rs", + "vendor/sqlx-postgres-0.8.2/src/types/citext.rs", + "vendor/sqlx-postgres-0.8.2/src/types/cube.rs", + "vendor/sqlx-postgres-0.8.2/src/types/float.rs", + "vendor/sqlx-postgres-0.8.2/src/types/hstore.rs", + "vendor/sqlx-postgres-0.8.2/src/types/int.rs", + "vendor/sqlx-postgres-0.8.2/src/types/interval.rs", + "vendor/sqlx-postgres-0.8.2/src/types/ipaddr.rs", + "vendor/sqlx-postgres-0.8.2/src/types/ipnetwork.rs", + "vendor/sqlx-postgres-0.8.2/src/types/json.rs", + "vendor/sqlx-postgres-0.8.2/src/types/lquery.rs", + "vendor/sqlx-postgres-0.8.2/src/types/ltree.rs", + "vendor/sqlx-postgres-0.8.2/src/types/mac_address.rs", + "vendor/sqlx-postgres-0.8.2/src/types/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/types/money.rs", + "vendor/sqlx-postgres-0.8.2/src/types/numeric.rs", + "vendor/sqlx-postgres-0.8.2/src/types/oid.rs", + "vendor/sqlx-postgres-0.8.2/src/types/range.rs", + "vendor/sqlx-postgres-0.8.2/src/types/record.rs", + "vendor/sqlx-postgres-0.8.2/src/types/rust_decimal.rs", + "vendor/sqlx-postgres-0.8.2/src/types/rust_decimal-range.md", + "vendor/sqlx-postgres-0.8.2/src/types/str.rs", + "vendor/sqlx-postgres-0.8.2/src/types/text.rs", + "vendor/sqlx-postgres-0.8.2/src/types/time/date.rs", + "vendor/sqlx-postgres-0.8.2/src/types/time/datetime.rs", + "vendor/sqlx-postgres-0.8.2/src/types/time/mod.rs", + "vendor/sqlx-postgres-0.8.2/src/types/time/time.rs", + "vendor/sqlx-postgres-0.8.2/src/types/time_tz.rs", + "vendor/sqlx-postgres-0.8.2/src/types/tuple.rs", + "vendor/sqlx-postgres-0.8.2/src/types/uuid.rs", + "vendor/sqlx-postgres-0.8.2/src/types/void.rs", + "vendor/sqlx-postgres-0.8.2/src/value.rs", + ], + crate = "sqlx_postgres", + crate_root = "vendor/sqlx-postgres-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "bigdecimal", + "chrono", + "json", + "migrate", + "offline", + "rust_decimal", + "time", + "uuid", + ], platform = { - "linux-arm64": dict( - deps = [":libc-0.2.169"], - ), - "linux-x86_64": dict( - deps = [":libc-0.2.169"], - ), - "macos-arm64": dict( - deps = [":libc-0.2.169"], - ), - "macos-x86_64": dict( - deps = [":libc-0.2.169"], - ), "windows-gnu": dict( - deps = [":winapi-0.3.9"], + deps = [":etcetera-0.8.0"], ), "windows-msvc": dict( - deps = [":winapi-0.3.9"], + deps = [":etcetera-0.8.0"], ), }, visibility = [], + deps = [ + ":atoi-2.0.0", + ":base64-0.22.1", + ":bigdecimal-0.4.6", + ":bitflags-2.6.0", + ":byteorder-1.5.0", + ":chrono-0.4.39", + ":crc-3.2.1", + ":dotenvy-0.15.7", + ":futures-channel-0.3.31", + ":futures-core-0.3.31", + ":futures-io-0.3.31", + ":futures-util-0.3.31", + ":hex-0.4.3", + ":hkdf-0.12.4", + ":hmac-0.12.1", + ":home-0.5.9", + ":itoa-1.0.11", + ":log-0.4.22", + ":md-5-0.10.6", + ":memchr-2.7.4", + ":num-bigint-0.4.6", + ":once_cell-1.20.3", + ":rand-0.8.5", + ":rust_decimal-1.35.0", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":sha2-0.10.8", + ":smallvec-1.13.2", + ":sqlx-core-0.8.2", + ":stringprep-0.1.5", + ":thiserror-1.0.65", + ":time-0.3.36", + ":tracing-0.1.41", + ":uuid-1.13.1", + ":whoami-1.5.1", + ], +) + +cargo.rust_library( + name = "sqlx-sqlite-0.8.2", + srcs = [ + "vendor/sqlx-sqlite-0.8.2/src/any.rs", + "vendor/sqlx-sqlite-0.8.2/src/arguments.rs", + "vendor/sqlx-sqlite-0.8.2/src/column.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/collation.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/describe.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/establish.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/execute.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/executor.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/explain.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/handle.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/intmap.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/mod.rs", + "vendor/sqlx-sqlite-0.8.2/src/connection/worker.rs", + "vendor/sqlx-sqlite-0.8.2/src/database.rs", + "vendor/sqlx-sqlite-0.8.2/src/error.rs", + "vendor/sqlx-sqlite-0.8.2/src/lib.rs", + "vendor/sqlx-sqlite-0.8.2/src/logger.rs", + "vendor/sqlx-sqlite-0.8.2/src/migrate.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/auto_vacuum.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/connect.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/journal_mode.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/locking_mode.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/mod.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/parse.rs", + "vendor/sqlx-sqlite-0.8.2/src/options/synchronous.rs", + "vendor/sqlx-sqlite-0.8.2/src/query_result.rs", + "vendor/sqlx-sqlite-0.8.2/src/regexp.rs", + "vendor/sqlx-sqlite-0.8.2/src/row.rs", + "vendor/sqlx-sqlite-0.8.2/src/statement/handle.rs", + "vendor/sqlx-sqlite-0.8.2/src/statement/mod.rs", + "vendor/sqlx-sqlite-0.8.2/src/statement/unlock_notify.rs", + "vendor/sqlx-sqlite-0.8.2/src/statement/virtual.rs", + "vendor/sqlx-sqlite-0.8.2/src/testing/mod.rs", + "vendor/sqlx-sqlite-0.8.2/src/transaction.rs", + "vendor/sqlx-sqlite-0.8.2/src/type_checking.rs", + "vendor/sqlx-sqlite-0.8.2/src/type_info.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/bool.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/bytes.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/chrono.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/float.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/int.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/json.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/mod.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/str.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/text.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/time.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/uint.rs", + "vendor/sqlx-sqlite-0.8.2/src/types/uuid.rs", + "vendor/sqlx-sqlite-0.8.2/src/value.rs", + ], + crate = "sqlx_sqlite", + crate_root = "vendor/sqlx-sqlite-0.8.2/src/lib.rs", + edition = "2021", + features = [ + "chrono", + "json", + "migrate", + "offline", + "serde", + "time", + "uuid", + ], + visibility = [], + deps = [ + ":atoi-2.0.0", + ":chrono-0.4.39", + ":flume-0.11.0", + ":futures-channel-0.3.31", + ":futures-core-0.3.31", + ":futures-executor-0.3.31", + ":futures-intrusive-0.5.0", + ":futures-util-0.3.31", + ":libsqlite3-sys-0.30.1", + ":log-0.4.22", + ":percent-encoding-2.3.1", + ":serde-1.0.217", + ":serde_urlencoded-0.7.1", + ":sqlx-core-0.8.2", + ":time-0.3.36", + ":tracing-0.1.41", + ":url-2.5.3", + ":uuid-1.13.1", + ], ) cargo.rust_library( - name = "socket2-0.5.7", + name = "ssh-cipher-0.2.0", srcs = [ - "vendor/socket2-0.5.7/src/lib.rs", - "vendor/socket2-0.5.7/src/sockaddr.rs", - "vendor/socket2-0.5.7/src/socket.rs", - "vendor/socket2-0.5.7/src/sockref.rs", - "vendor/socket2-0.5.7/src/sys/unix.rs", - "vendor/socket2-0.5.7/src/sys/windows.rs", + "vendor/ssh-cipher-0.2.0/README.md", + "vendor/ssh-cipher-0.2.0/src/chacha20poly1305.rs", + "vendor/ssh-cipher-0.2.0/src/error.rs", + "vendor/ssh-cipher-0.2.0/src/lib.rs", ], - crate = "socket2", - crate_root = "vendor/socket2-0.5.7/src/lib.rs", + crate = "ssh_cipher", + crate_root = "vendor/ssh-cipher-0.2.0/src/lib.rs", edition = "2021", - features = ["all"], - platform = { - "linux-arm64": dict( - deps = [":libc-0.2.169"], - ), - "linux-x86_64": dict( - deps = [":libc-0.2.169"], - ), - "macos-arm64": dict( - deps = [":libc-0.2.169"], - ), - "macos-x86_64": dict( - deps = [":libc-0.2.169"], - ), - "windows-gnu": dict( - deps = [":windows-sys-0.52.0"], - ), - "windows-msvc": dict( - deps = [":windows-sys-0.52.0"], - ), + features = [ + "aes-cbc", + "aes-ctr", + "aes-gcm", + "chacha20poly1305", + ], + named_deps = { + "encoding": ":ssh-encoding-0.2.0", }, visibility = [], + deps = [ + ":aes-0.8.4", + ":aes-gcm-0.10.3", + ":cbc-0.1.2", + ":chacha20-0.9.1", + ":cipher-0.4.4", + ":ctr-0.9.2", + ":poly1305-0.8.0", + ":subtle-2.6.1", + ], ) cargo.rust_library( - name = "spin-0.9.8", + name = "ssh-encoding-0.2.0", srcs = [ - "vendor/spin-0.9.8/src/barrier.rs", - "vendor/spin-0.9.8/src/lazy.rs", - "vendor/spin-0.9.8/src/lib.rs", - "vendor/spin-0.9.8/src/mutex.rs", - "vendor/spin-0.9.8/src/mutex/fair.rs", - "vendor/spin-0.9.8/src/mutex/spin.rs", - "vendor/spin-0.9.8/src/mutex/ticket.rs", - "vendor/spin-0.9.8/src/once.rs", - "vendor/spin-0.9.8/src/relax.rs", - "vendor/spin-0.9.8/src/rwlock.rs", + "vendor/ssh-encoding-0.2.0/README.md", + "vendor/ssh-encoding-0.2.0/src/checked.rs", + "vendor/ssh-encoding-0.2.0/src/decode.rs", + "vendor/ssh-encoding-0.2.0/src/encode.rs", + "vendor/ssh-encoding-0.2.0/src/error.rs", + "vendor/ssh-encoding-0.2.0/src/label.rs", + "vendor/ssh-encoding-0.2.0/src/lib.rs", + "vendor/ssh-encoding-0.2.0/src/reader.rs", + "vendor/ssh-encoding-0.2.0/src/writer.rs", ], - crate = "spin", - crate_root = "vendor/spin-0.9.8/src/lib.rs", - edition = "2015", + crate = "ssh_encoding", + crate_root = "vendor/ssh-encoding-0.2.0/src/lib.rs", + edition = "2021", features = [ - "barrier", - "default", - "lazy", - "lock_api", - "lock_api_crate", - "mutex", - "once", - "rwlock", - "spin_mutex", + "alloc", + "base64", + "bytes", + "pem", + "sha2", + "std", ], named_deps = { - "lock_api_crate": ":lock_api-0.4.12", + "base64": ":base64ct-1.6.0", + "pem": ":pem-rfc7468-0.7.0", }, visibility = [], + deps = [ + ":bytes-1.10.0", + ":sha2-0.10.8", + ], ) cargo.rust_library( @@ -13222,6 +23243,28 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "stacker-0.1.15", + srcs = ["vendor/stacker-0.1.15/src/lib.rs"], + crate = "stacker", + crate_root = "vendor/stacker-0.1.15/src/lib.rs", + edition = "2015", + platform = { + "windows-gnu": dict( + deps = [":winapi-0.3.9"], + ), + "windows-msvc": dict( + deps = [":winapi-0.3.9"], + ), + }, + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":libc-0.2.169", + ":psm-0.1.21", + ], +) + cargo.rust_library( name = "static_assertions-1.1.0", srcs = [ @@ -13242,6 +23285,46 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "string_cache-0.8.7", + srcs = [ + "vendor/string_cache-0.8.7/src/atom.rs", + "vendor/string_cache-0.8.7/src/dynamic_set.rs", + "vendor/string_cache-0.8.7/src/lib.rs", + "vendor/string_cache-0.8.7/src/static_sets.rs", + "vendor/string_cache-0.8.7/src/trivial_impls.rs", + ], + crate = "string_cache", + crate_root = "vendor/string_cache-0.8.7/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":new_debug_unreachable-1.0.6", + ":once_cell-1.20.3", + ":parking_lot-0.12.3", + ":phf_shared-0.10.0", + ":precomputed-hash-0.1.1", + ], +) + +cargo.rust_library( + name = "stringprep-0.1.5", + srcs = [ + "vendor/stringprep-0.1.5/src/lib.rs", + "vendor/stringprep-0.1.5/src/rfc3454.rs", + "vendor/stringprep-0.1.5/src/tables.rs", + ], + crate = "stringprep", + crate_root = "vendor/stringprep-0.1.5/src/lib.rs", + edition = "2015", + visibility = [], + deps = [ + ":unicode-bidi-0.3.15", + ":unicode-normalization-0.1.23", + ":unicode-properties-0.1.1", + ], +) + cargo.rust_library( name = "strsim-0.11.1", srcs = ["vendor/strsim-0.11.1/src/lib.rs"], @@ -13270,6 +23353,18 @@ cargo.rust_library( deps = [":strum_macros-0.25.3"], ) +cargo.rust_library( + name = "strum-0.26.3", + srcs = [ + "vendor/strum-0.26.3/src/additional_attributes.rs", + "vendor/strum-0.26.3/src/lib.rs", + ], + crate = "strum", + crate_root = "vendor/strum-0.26.3/src/lib.rs", + edition = "2018", + visibility = [], +) + cargo.rust_library( name = "strum_macros-0.25.3", srcs = [ @@ -13295,37 +23390,120 @@ cargo.rust_library( "vendor/strum_macros-0.25.3/src/macros/strings/mod.rs", "vendor/strum_macros-0.25.3/src/macros/strings/to_string.rs", ], - crate = "strum_macros", - crate_root = "vendor/strum_macros-0.25.3/src/lib.rs", + crate = "strum_macros", + crate_root = "vendor/strum_macros-0.25.3/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":heck-0.4.1", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":rustversion-1.0.17", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "subtle-2.6.1", + srcs = ["vendor/subtle-2.6.1/src/lib.rs"], + crate = "subtle", + crate_root = "vendor/subtle-2.6.1/src/lib.rs", + edition = "2018", + features = [ + "default", + "i128", + "std", + ], + visibility = [], +) + +cargo.rust_library( + name = "syn-1.0.109", + srcs = [ + "vendor/syn-1.0.109/src/attr.rs", + "vendor/syn-1.0.109/src/await.rs", + "vendor/syn-1.0.109/src/bigint.rs", + "vendor/syn-1.0.109/src/buffer.rs", + "vendor/syn-1.0.109/src/custom_keyword.rs", + "vendor/syn-1.0.109/src/custom_punctuation.rs", + "vendor/syn-1.0.109/src/data.rs", + "vendor/syn-1.0.109/src/derive.rs", + "vendor/syn-1.0.109/src/discouraged.rs", + "vendor/syn-1.0.109/src/drops.rs", + "vendor/syn-1.0.109/src/error.rs", + "vendor/syn-1.0.109/src/export.rs", + "vendor/syn-1.0.109/src/expr.rs", + "vendor/syn-1.0.109/src/ext.rs", + "vendor/syn-1.0.109/src/file.rs", + "vendor/syn-1.0.109/src/gen/clone.rs", + "vendor/syn-1.0.109/src/gen/debug.rs", + "vendor/syn-1.0.109/src/gen/eq.rs", + "vendor/syn-1.0.109/src/gen/fold.rs", + "vendor/syn-1.0.109/src/gen/hash.rs", + "vendor/syn-1.0.109/src/gen/visit.rs", + "vendor/syn-1.0.109/src/gen/visit_mut.rs", + "vendor/syn-1.0.109/src/gen_helper.rs", + "vendor/syn-1.0.109/src/generics.rs", + "vendor/syn-1.0.109/src/group.rs", + "vendor/syn-1.0.109/src/ident.rs", + "vendor/syn-1.0.109/src/item.rs", + "vendor/syn-1.0.109/src/lib.rs", + "vendor/syn-1.0.109/src/lifetime.rs", + "vendor/syn-1.0.109/src/lit.rs", + "vendor/syn-1.0.109/src/lookahead.rs", + "vendor/syn-1.0.109/src/mac.rs", + "vendor/syn-1.0.109/src/macros.rs", + "vendor/syn-1.0.109/src/op.rs", + "vendor/syn-1.0.109/src/parse.rs", + "vendor/syn-1.0.109/src/parse_macro_input.rs", + "vendor/syn-1.0.109/src/parse_quote.rs", + "vendor/syn-1.0.109/src/pat.rs", + "vendor/syn-1.0.109/src/path.rs", + "vendor/syn-1.0.109/src/print.rs", + "vendor/syn-1.0.109/src/punctuated.rs", + "vendor/syn-1.0.109/src/reserved.rs", + "vendor/syn-1.0.109/src/sealed.rs", + "vendor/syn-1.0.109/src/span.rs", + "vendor/syn-1.0.109/src/spanned.rs", + "vendor/syn-1.0.109/src/stmt.rs", + "vendor/syn-1.0.109/src/thread.rs", + "vendor/syn-1.0.109/src/token.rs", + "vendor/syn-1.0.109/src/tt.rs", + "vendor/syn-1.0.109/src/ty.rs", + "vendor/syn-1.0.109/src/verbatim.rs", + "vendor/syn-1.0.109/src/whitespace.rs", + ], + crate = "syn", + crate_root = "vendor/syn-1.0.109/src/lib.rs", edition = "2018", - proc_macro = True, + features = [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit", + ], + rustc_flags = ["@$(location :syn-1.0.109-build-script-run[rustc_flags])"], visibility = [], deps = [ - ":heck-0.4.1", ":proc-macro2-1.0.86", ":quote-1.0.36", - ":rustversion-1.0.17", - ":syn-2.0.87", - ], -) - -cargo.rust_library( - name = "subtle-2.6.1", - srcs = ["vendor/subtle-2.6.1/src/lib.rs"], - crate = "subtle", - crate_root = "vendor/subtle-2.6.1/src/lib.rs", - edition = "2018", - features = [ - "default", - "i128", - "std", + ":unicode-ident-1.0.12", ], - visibility = [], ) -cargo.rust_library( - name = "syn-1.0.109", +cargo.rust_binary( + name = "syn-1.0.109-build-script-build", srcs = [ + "vendor/syn-1.0.109/benches/file.rs", + "vendor/syn-1.0.109/benches/rust.rs", + "vendor/syn-1.0.109/build.rs", "vendor/syn-1.0.109/src/attr.rs", "vendor/syn-1.0.109/src/await.rs", "vendor/syn-1.0.109/src/bigint.rs", @@ -13378,9 +23556,46 @@ cargo.rust_library( "vendor/syn-1.0.109/src/ty.rs", "vendor/syn-1.0.109/src/verbatim.rs", "vendor/syn-1.0.109/src/whitespace.rs", + "vendor/syn-1.0.109/tests/common/eq.rs", + "vendor/syn-1.0.109/tests/common/mod.rs", + "vendor/syn-1.0.109/tests/common/parse.rs", + "vendor/syn-1.0.109/tests/debug/gen.rs", + "vendor/syn-1.0.109/tests/debug/mod.rs", + "vendor/syn-1.0.109/tests/macros/mod.rs", + "vendor/syn-1.0.109/tests/regression.rs", + "vendor/syn-1.0.109/tests/regression/issue1108.rs", + "vendor/syn-1.0.109/tests/regression/issue1235.rs", + "vendor/syn-1.0.109/tests/repo/mod.rs", + "vendor/syn-1.0.109/tests/repo/progress.rs", + "vendor/syn-1.0.109/tests/test_asyncness.rs", + "vendor/syn-1.0.109/tests/test_attribute.rs", + "vendor/syn-1.0.109/tests/test_derive_input.rs", + "vendor/syn-1.0.109/tests/test_expr.rs", + "vendor/syn-1.0.109/tests/test_generics.rs", + "vendor/syn-1.0.109/tests/test_grouping.rs", + "vendor/syn-1.0.109/tests/test_ident.rs", + "vendor/syn-1.0.109/tests/test_item.rs", + "vendor/syn-1.0.109/tests/test_iterators.rs", + "vendor/syn-1.0.109/tests/test_lit.rs", + "vendor/syn-1.0.109/tests/test_meta.rs", + "vendor/syn-1.0.109/tests/test_parse_buffer.rs", + "vendor/syn-1.0.109/tests/test_parse_stream.rs", + "vendor/syn-1.0.109/tests/test_pat.rs", + "vendor/syn-1.0.109/tests/test_path.rs", + "vendor/syn-1.0.109/tests/test_precedence.rs", + "vendor/syn-1.0.109/tests/test_receiver.rs", + "vendor/syn-1.0.109/tests/test_round_trip.rs", + "vendor/syn-1.0.109/tests/test_shebang.rs", + "vendor/syn-1.0.109/tests/test_should_parse.rs", + "vendor/syn-1.0.109/tests/test_size.rs", + "vendor/syn-1.0.109/tests/test_stmt.rs", + "vendor/syn-1.0.109/tests/test_token_trees.rs", + "vendor/syn-1.0.109/tests/test_ty.rs", + "vendor/syn-1.0.109/tests/test_visibility.rs", + "vendor/syn-1.0.109/tests/zzz_stable.rs", ], - crate = "syn", - crate_root = "vendor/syn-1.0.109/src/lib.rs", + crate = "build_script_build", + crate_root = "vendor/syn-1.0.109/build.rs", edition = "2018", features = [ "clone-impls", @@ -13395,11 +23610,25 @@ cargo.rust_library( "visit", ], visibility = [], - deps = [ - ":proc-macro2-1.0.86", - ":quote-1.0.36", - ":unicode-ident-1.0.12", +) + +buildscript_run( + name = "syn-1.0.109-build-script-run", + package_name = "syn", + buildscript_rule = ":syn-1.0.109-build-script-build", + features = [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit", ], + version = "1.0.109", ) cargo.rust_library( @@ -13485,6 +23714,26 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "syn_derive-0.1.8", + srcs = ["vendor/syn_derive-0.1.8/src/lib.rs"], + crate = "syn_derive", + crate_root = "vendor/syn_derive-0.1.8/src/lib.rs", + edition = "2021", + features = [ + "default", + "full", + ], + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro-error-1.0.4", + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "sync_wrapper-1.0.1", srcs = ["vendor/sync_wrapper-1.0.1/src/lib.rs"], @@ -13682,6 +23931,157 @@ cargo.rust_library( ], ) +alias( + name = "sysinfo", + actual = ":sysinfo-0.33.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "sysinfo-0.33.1", + srcs = [ + "vendor/sysinfo-0.33.1/README.md", + "vendor/sysinfo-0.33.1/md_doc/is_supported.md", + "vendor/sysinfo-0.33.1/md_doc/minimum_cpu_update_interval.md", + "vendor/sysinfo-0.33.1/md_doc/pid.md", + "vendor/sysinfo-0.33.1/md_doc/supported_signals.md", + "vendor/sysinfo-0.33.1/src/c_interface.rs", + "vendor/sysinfo-0.33.1/src/common/component.rs", + "vendor/sysinfo-0.33.1/src/common/disk.rs", + "vendor/sysinfo-0.33.1/src/common/impl_get_set.rs", + "vendor/sysinfo-0.33.1/src/common/mod.rs", + "vendor/sysinfo-0.33.1/src/common/network.rs", + "vendor/sysinfo-0.33.1/src/common/system.rs", + "vendor/sysinfo-0.33.1/src/common/user.rs", + "vendor/sysinfo-0.33.1/src/debug.rs", + "vendor/sysinfo-0.33.1/src/lib.rs", + "vendor/sysinfo-0.33.1/src/macros.rs", + "vendor/sysinfo-0.33.1/src/network.rs", + "vendor/sysinfo-0.33.1/src/serde.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/app_store/component.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/app_store/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/app_store/process.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/component.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/cpu.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/disk.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/ffi.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/groups.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/ios.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/component/arm.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/component/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/component/x86.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/cpu.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/disk.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/ffi.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/process.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/system.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/macos/utils.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/network.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/process.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/system.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/users.rs", + "vendor/sysinfo-0.33.1/src/unix/apple/utils.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/component.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/cpu.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/disk.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/ffi.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/network.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/process.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/system.rs", + "vendor/sysinfo-0.33.1/src/unix/freebsd/utils.rs", + "vendor/sysinfo-0.33.1/src/unix/groups.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/component.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/cpu.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/disk.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/network.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/process.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/system.rs", + "vendor/sysinfo-0.33.1/src/unix/linux/utils.rs", + "vendor/sysinfo-0.33.1/src/unix/mod.rs", + "vendor/sysinfo-0.33.1/src/unix/network_helper.rs", + "vendor/sysinfo-0.33.1/src/unix/users.rs", + "vendor/sysinfo-0.33.1/src/unix/utils.rs", + "vendor/sysinfo-0.33.1/src/unknown/component.rs", + "vendor/sysinfo-0.33.1/src/unknown/cpu.rs", + "vendor/sysinfo-0.33.1/src/unknown/disk.rs", + "vendor/sysinfo-0.33.1/src/unknown/groups.rs", + "vendor/sysinfo-0.33.1/src/unknown/mod.rs", + "vendor/sysinfo-0.33.1/src/unknown/network.rs", + "vendor/sysinfo-0.33.1/src/unknown/process.rs", + "vendor/sysinfo-0.33.1/src/unknown/system.rs", + "vendor/sysinfo-0.33.1/src/unknown/users.rs", + "vendor/sysinfo-0.33.1/src/utils.rs", + "vendor/sysinfo-0.33.1/src/windows/component.rs", + "vendor/sysinfo-0.33.1/src/windows/cpu.rs", + "vendor/sysinfo-0.33.1/src/windows/disk.rs", + "vendor/sysinfo-0.33.1/src/windows/groups.rs", + "vendor/sysinfo-0.33.1/src/windows/mod.rs", + "vendor/sysinfo-0.33.1/src/windows/network.rs", + "vendor/sysinfo-0.33.1/src/windows/network_helper.rs", + "vendor/sysinfo-0.33.1/src/windows/process.rs", + "vendor/sysinfo-0.33.1/src/windows/sid.rs", + "vendor/sysinfo-0.33.1/src/windows/system.rs", + "vendor/sysinfo-0.33.1/src/windows/users.rs", + "vendor/sysinfo-0.33.1/src/windows/utils.rs", + ], + crate = "sysinfo", + crate_root = "vendor/sysinfo-0.33.1/src/lib.rs", + edition = "2021", + features = [ + "component", + "default", + "disk", + "multithread", + "network", + "system", + "user", + "windows", + ], + platform = { + "linux-arm64": dict( + deps = [":libc-0.2.169"], + ), + "linux-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "macos-arm64": dict( + deps = [ + ":core-foundation-sys-0.8.7", + ":libc-0.2.169", + ], + ), + "macos-x86_64": dict( + deps = [ + ":core-foundation-sys-0.8.7", + ":libc-0.2.169", + ], + ), + "windows-gnu": dict( + deps = [ + ":libc-0.2.169", + ":ntapi-0.4.1", + ":windows-0.57.0", + ], + ), + "windows-msvc": dict( + deps = [ + ":libc-0.2.169", + ":ntapi-0.4.1", + ":windows-0.57.0", + ], + ), + }, + visibility = [], + deps = [ + ":memchr-2.7.4", + ":rayon-1.10.0", + ], +) + cargo.rust_library( name = "system-configuration-0.6.1", srcs = [ @@ -13723,6 +24123,20 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "tap-1.0.1", + srcs = [ + "vendor/tap-1.0.1/src/conv.rs", + "vendor/tap-1.0.1/src/lib.rs", + "vendor/tap-1.0.1/src/pipe.rs", + "vendor/tap-1.0.1/src/tap.rs", + ], + crate = "tap", + crate_root = "vendor/tap-1.0.1/src/lib.rs", + edition = "2015", + visibility = [], +) + cargo.rust_library( name = "tempfile-3.16.0", srcs = [ @@ -13827,6 +24241,33 @@ cargo.rust_library( deps = [":dirs-next-2.0.0"], ) +cargo.rust_library( + name = "term-1.0.0", + srcs = [ + "vendor/term-1.0.0/src/lib.rs", + "vendor/term-1.0.0/src/terminfo/mod.rs", + "vendor/term-1.0.0/src/terminfo/parm.rs", + "vendor/term-1.0.0/src/terminfo/parser/compiled.rs", + "vendor/term-1.0.0/src/terminfo/parser/names.rs", + "vendor/term-1.0.0/src/terminfo/searcher.rs", + "vendor/term-1.0.0/src/win.rs", + ], + crate = "term", + crate_root = "vendor/term-1.0.0/src/lib.rs", + edition = "2021", + features = ["default"], + platform = { + "windows-gnu": dict( + deps = [":windows-sys-0.52.0"], + ), + "windows-msvc": dict( + deps = [":windows-sys-0.52.0"], + ), + }, + visibility = [], + deps = [":home-0.5.9"], +) + cargo.rust_library( name = "termcolor-1.4.1", srcs = ["vendor/termcolor-1.4.1/src/lib.rs"], @@ -13900,10 +24341,77 @@ cargo.rust_library( crate = "thiserror", crate_root = "vendor/thiserror-1.0.65/src/lib.rs", edition = "2021", + rustc_flags = ["@$(location :thiserror-1.0.65-build-script-run[rustc_flags])"], visibility = [], deps = [":thiserror-impl-1.0.65"], ) +cargo.rust_binary( + name = "thiserror-1.0.65-build-script-build", + srcs = [ + "vendor/thiserror-1.0.65/build.rs", + "vendor/thiserror-1.0.65/build/probe.rs", + "vendor/thiserror-1.0.65/src/aserror.rs", + "vendor/thiserror-1.0.65/src/display.rs", + "vendor/thiserror-1.0.65/src/lib.rs", + "vendor/thiserror-1.0.65/src/provide.rs", + "vendor/thiserror-1.0.65/tests/compiletest.rs", + "vendor/thiserror-1.0.65/tests/test_backtrace.rs", + "vendor/thiserror-1.0.65/tests/test_deprecated.rs", + "vendor/thiserror-1.0.65/tests/test_display.rs", + "vendor/thiserror-1.0.65/tests/test_error.rs", + "vendor/thiserror-1.0.65/tests/test_expr.rs", + "vendor/thiserror-1.0.65/tests/test_from.rs", + "vendor/thiserror-1.0.65/tests/test_generics.rs", + "vendor/thiserror-1.0.65/tests/test_lints.rs", + "vendor/thiserror-1.0.65/tests/test_option.rs", + "vendor/thiserror-1.0.65/tests/test_path.rs", + "vendor/thiserror-1.0.65/tests/test_source.rs", + "vendor/thiserror-1.0.65/tests/test_transparent.rs", + "vendor/thiserror-1.0.65/tests/ui/bad-field-attr.rs", + "vendor/thiserror-1.0.65/tests/ui/concat-display.rs", + "vendor/thiserror-1.0.65/tests/ui/duplicate-enum-source.rs", + "vendor/thiserror-1.0.65/tests/ui/duplicate-fmt.rs", + "vendor/thiserror-1.0.65/tests/ui/duplicate-struct-source.rs", + "vendor/thiserror-1.0.65/tests/ui/duplicate-transparent.rs", + "vendor/thiserror-1.0.65/tests/ui/fallback-impl-with-display.rs", + "vendor/thiserror-1.0.65/tests/ui/from-backtrace-backtrace.rs", + "vendor/thiserror-1.0.65/tests/ui/from-not-source.rs", + "vendor/thiserror-1.0.65/tests/ui/invalid-input-impl-anyway.rs", + "vendor/thiserror-1.0.65/tests/ui/lifetime.rs", + "vendor/thiserror-1.0.65/tests/ui/missing-display.rs", + "vendor/thiserror-1.0.65/tests/ui/missing-fmt.rs", + "vendor/thiserror-1.0.65/tests/ui/no-display.rs", + "vendor/thiserror-1.0.65/tests/ui/source-enum-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/source-enum-unnamed-field-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/source-struct-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/source-struct-unnamed-field-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-display.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-enum-many.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-enum-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-enum-source.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-enum-unnamed-field-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-struct-many.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-struct-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-struct-source.rs", + "vendor/thiserror-1.0.65/tests/ui/transparent-struct-unnamed-field-not-error.rs", + "vendor/thiserror-1.0.65/tests/ui/unexpected-field-fmt.rs", + "vendor/thiserror-1.0.65/tests/ui/unexpected-struct-source.rs", + "vendor/thiserror-1.0.65/tests/ui/union.rs", + ], + crate = "build_script_build", + crate_root = "vendor/thiserror-1.0.65/build.rs", + edition = "2021", + visibility = [], +) + +buildscript_run( + name = "thiserror-1.0.65-build-script-run", + package_name = "thiserror", + buildscript_rule = ":thiserror-1.0.65-build-script-build", + version = "1.0.65", +) + alias( name = "thiserror", actual = ":thiserror-2.0.11", @@ -13926,10 +24434,92 @@ cargo.rust_library( "default", "std", ], + rustc_flags = ["@$(location :thiserror-2.0.11-build-script-run[rustc_flags])"], visibility = [], deps = [":thiserror-impl-2.0.11"], ) +cargo.rust_binary( + name = "thiserror-2.0.11-build-script-build", + srcs = [ + "vendor/thiserror-2.0.11/build.rs", + "vendor/thiserror-2.0.11/build/probe.rs", + "vendor/thiserror-2.0.11/src/aserror.rs", + "vendor/thiserror-2.0.11/src/display.rs", + "vendor/thiserror-2.0.11/src/lib.rs", + "vendor/thiserror-2.0.11/src/provide.rs", + "vendor/thiserror-2.0.11/src/var.rs", + "vendor/thiserror-2.0.11/tests/compiletest.rs", + "vendor/thiserror-2.0.11/tests/test_backtrace.rs", + "vendor/thiserror-2.0.11/tests/test_display.rs", + "vendor/thiserror-2.0.11/tests/test_error.rs", + "vendor/thiserror-2.0.11/tests/test_expr.rs", + "vendor/thiserror-2.0.11/tests/test_from.rs", + "vendor/thiserror-2.0.11/tests/test_generics.rs", + "vendor/thiserror-2.0.11/tests/test_lints.rs", + "vendor/thiserror-2.0.11/tests/test_option.rs", + "vendor/thiserror-2.0.11/tests/test_path.rs", + "vendor/thiserror-2.0.11/tests/test_source.rs", + "vendor/thiserror-2.0.11/tests/test_transparent.rs", + "vendor/thiserror-2.0.11/tests/ui/bad-field-attr.rs", + "vendor/thiserror-2.0.11/tests/ui/concat-display.rs", + "vendor/thiserror-2.0.11/tests/ui/display-underscore.rs", + "vendor/thiserror-2.0.11/tests/ui/duplicate-enum-source.rs", + "vendor/thiserror-2.0.11/tests/ui/duplicate-fmt.rs", + "vendor/thiserror-2.0.11/tests/ui/duplicate-struct-source.rs", + "vendor/thiserror-2.0.11/tests/ui/duplicate-transparent.rs", + "vendor/thiserror-2.0.11/tests/ui/expression-fallback.rs", + "vendor/thiserror-2.0.11/tests/ui/fallback-impl-with-display.rs", + "vendor/thiserror-2.0.11/tests/ui/from-backtrace-backtrace.rs", + "vendor/thiserror-2.0.11/tests/ui/from-not-source.rs", + "vendor/thiserror-2.0.11/tests/ui/invalid-input-impl-anyway.rs", + "vendor/thiserror-2.0.11/tests/ui/lifetime.rs", + "vendor/thiserror-2.0.11/tests/ui/missing-display.rs", + "vendor/thiserror-2.0.11/tests/ui/missing-fmt.rs", + "vendor/thiserror-2.0.11/tests/ui/no-display.rs", + "vendor/thiserror-2.0.11/tests/ui/numbered-positional-tuple.rs", + "vendor/thiserror-2.0.11/tests/ui/raw-identifier.rs", + "vendor/thiserror-2.0.11/tests/ui/same-from-type.rs", + "vendor/thiserror-2.0.11/tests/ui/source-enum-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/source-enum-unnamed-field-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/source-struct-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/source-struct-unnamed-field-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/struct-with-fmt.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-display.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-enum-many.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-enum-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-enum-source.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-enum-unnamed-field-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-struct-many.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-struct-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-struct-source.rs", + "vendor/thiserror-2.0.11/tests/ui/transparent-struct-unnamed-field-not-error.rs", + "vendor/thiserror-2.0.11/tests/ui/unconditional-recursion.rs", + "vendor/thiserror-2.0.11/tests/ui/unexpected-field-fmt.rs", + "vendor/thiserror-2.0.11/tests/ui/unexpected-struct-source.rs", + "vendor/thiserror-2.0.11/tests/ui/union.rs", + ], + crate = "build_script_build", + crate_root = "vendor/thiserror-2.0.11/build.rs", + edition = "2021", + features = [ + "default", + "std", + ], + visibility = [], +) + +buildscript_run( + name = "thiserror-2.0.11-build-script-run", + package_name = "thiserror", + buildscript_rule = ":thiserror-2.0.11-build-script-build", + features = [ + "default", + "std", + ], + version = "2.0.11", +) + cargo.rust_library( name = "thiserror-impl-1.0.65", srcs = [ @@ -13982,6 +24572,40 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "thread_local-1.1.8", + srcs = [ + "vendor/thread_local-1.1.8/src/cached.rs", + "vendor/thread_local-1.1.8/src/lib.rs", + "vendor/thread_local-1.1.8/src/thread_id.rs", + "vendor/thread_local-1.1.8/src/unreachable.rs", + ], + crate = "thread_local", + crate_root = "vendor/thread_local-1.1.8/src/lib.rs", + edition = "2021", + visibility = [], + deps = [ + ":cfg-if-1.0.0", + ":once_cell-1.20.3", + ], +) + +alias( + name = "threadpool", + actual = ":threadpool-1.8.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "threadpool-1.8.1", + srcs = ["vendor/threadpool-1.8.1/src/lib.rs"], + crate = "threadpool", + crate_root = "vendor/threadpool-1.8.1/src/lib.rs", + edition = "2015", + visibility = [], + deps = [":num_cpus-1.16.0"], +) + cargo.rust_library( name = "time-0.3.36", srcs = [ @@ -14151,16 +24775,42 @@ cargo.rust_library( crate_root = "vendor/time-macros-0.2.18/src/lib.rs", edition = "2021", features = [ - "formatting", - "parsing", - "serde", + "formatting", + "parsing", + "serde", + ], + proc_macro = True, + visibility = [], + deps = [ + ":num-conv-0.1.0", + ":time-core-0.1.2", + ], +) + +cargo.rust_library( + name = "tiny-keccak-2.0.2", + srcs = [ + "vendor/tiny-keccak-2.0.2/src/cshake.rs", + "vendor/tiny-keccak-2.0.2/src/k12.rs", + "vendor/tiny-keccak-2.0.2/src/keccak.rs", + "vendor/tiny-keccak-2.0.2/src/keccakf.rs", + "vendor/tiny-keccak-2.0.2/src/keccakp.rs", + "vendor/tiny-keccak-2.0.2/src/kmac.rs", + "vendor/tiny-keccak-2.0.2/src/lib.rs", + "vendor/tiny-keccak-2.0.2/src/parallel_hash.rs", + "vendor/tiny-keccak-2.0.2/src/sha3.rs", + "vendor/tiny-keccak-2.0.2/src/shake.rs", + "vendor/tiny-keccak-2.0.2/src/tuple_hash.rs", + ], + crate = "tiny_keccak", + crate_root = "vendor/tiny-keccak-2.0.2/src/lib.rs", + edition = "2018", + features = [ + "default", + "shake", ], - proc_macro = True, visibility = [], - deps = [ - ":num-conv-0.1.0", - ":time-core-0.1.2", - ], + deps = [":crunchy-0.2.2"], ) cargo.rust_library( @@ -14600,940 +25250,2412 @@ cargo.rust_library( "vendor/tokio-1.43.0/src/util/wake.rs", "vendor/tokio-1.43.0/src/util/wake_list.rs", ], - crate = "tokio", - crate_root = "vendor/tokio-1.43.0/src/lib.rs", - edition = "2021", + crate = "tokio", + crate_root = "vendor/tokio-1.43.0/src/lib.rs", + edition = "2021", + 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", + ], + platform = { + "linux-arm64": dict( + deps = [ + ":libc-0.2.169", + ":signal-hook-registry-1.4.2", + ":socket2-0.5.7", + ], + ), + "linux-x86_64": dict( + deps = [ + ":libc-0.2.169", + ":signal-hook-registry-1.4.2", + ":socket2-0.5.7", + ], + ), + "macos-arm64": dict( + deps = [ + ":libc-0.2.169", + ":signal-hook-registry-1.4.2", + ":socket2-0.5.7", + ], + ), + "macos-x86_64": dict( + deps = [ + ":libc-0.2.169", + ":signal-hook-registry-1.4.2", + ":socket2-0.5.7", + ], + ), + "windows-gnu": dict( + deps = [ + ":socket2-0.5.7", + ":windows-sys-0.52.0", + ], + ), + "windows-msvc": dict( + deps = [ + ":socket2-0.5.7", + ":windows-sys-0.52.0", + ], + ), + }, + visibility = [], + deps = [ + ":bytes-1.10.0", + ":mio-1.0.2", + ":parking_lot-0.12.3", + ":pin-project-lite-0.2.14", + ":tokio-macros-2.5.0", + ], +) + +cargo.rust_library( + name = "tokio-macros-2.5.0", + srcs = [ + "vendor/tokio-macros-2.5.0/src/entry.rs", + "vendor/tokio-macros-2.5.0/src/lib.rs", + "vendor/tokio-macros-2.5.0/src/select.rs", + ], + crate = "tokio_macros", + crate_root = "vendor/tokio-macros-2.5.0/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "tokio-native-tls-0.3.1", + srcs = ["vendor/tokio-native-tls-0.3.1/src/lib.rs"], + crate = "tokio_native_tls", + crate_root = "vendor/tokio-native-tls-0.3.1/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":native-tls-0.2.12", + ":tokio-1.43.0", + ], +) + +cargo.rust_library( + name = "tokio-openssl-0.6.4", + srcs = [ + "vendor/tokio-openssl-0.6.4/src/lib.rs", + "vendor/tokio-openssl-0.6.4/src/test.rs", + ], + crate = "tokio_openssl", + crate_root = "vendor/tokio-openssl-0.6.4/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":futures-util-0.3.31", + ":openssl-0.10.71", + ":openssl-sys-0.9.106", + ":tokio-1.43.0", + ], +) + +cargo.rust_library( + name = "tokio-rustls-0.26.0", + srcs = [ + "vendor/tokio-rustls-0.26.0/src/client.rs", + "vendor/tokio-rustls-0.26.0/src/common/handshake.rs", + "vendor/tokio-rustls-0.26.0/src/common/mod.rs", + "vendor/tokio-rustls-0.26.0/src/common/test_stream.rs", + "vendor/tokio-rustls-0.26.0/src/lib.rs", + "vendor/tokio-rustls-0.26.0/src/server.rs", + ], + crate = "tokio_rustls", + crate_root = "vendor/tokio-rustls-0.26.0/src/lib.rs", + edition = "2021", + features = [ + "ring", + "tls12", + ], + named_deps = { + "pki_types": ":rustls-pki-types-1.11.0", + }, + visibility = [], + deps = [ + ":rustls-0.23.22", + ":tokio-1.43.0", + ], +) + +alias( + name = "tokio-stream", + actual = ":tokio-stream-0.1.17", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "tokio-stream-0.1.17", + srcs = [ + "vendor/tokio-stream-0.1.17/src/empty.rs", + "vendor/tokio-stream-0.1.17/src/iter.rs", + "vendor/tokio-stream-0.1.17/src/lib.rs", + "vendor/tokio-stream-0.1.17/src/macros.rs", + "vendor/tokio-stream-0.1.17/src/once.rs", + "vendor/tokio-stream-0.1.17/src/pending.rs", + "vendor/tokio-stream-0.1.17/src/stream_close.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/all.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/any.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/chain.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/chunks_timeout.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/collect.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/filter.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/filter_map.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/fold.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/fuse.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/map.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/map_while.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/merge.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/next.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/peekable.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/skip.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/skip_while.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/take.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/take_while.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/then.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/throttle.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/timeout.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/timeout_repeating.rs", + "vendor/tokio-stream-0.1.17/src/stream_ext/try_next.rs", + "vendor/tokio-stream-0.1.17/src/stream_map.rs", + "vendor/tokio-stream-0.1.17/src/wrappers.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/broadcast.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/interval.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/lines.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/mpsc_bounded.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/mpsc_unbounded.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/read_dir.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/signal_unix.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/signal_windows.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/split.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/tcp_listener.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/unix_listener.rs", + "vendor/tokio-stream-0.1.17/src/wrappers/watch.rs", + ], + crate = "tokio_stream", + crate_root = "vendor/tokio-stream-0.1.17/src/lib.rs", + edition = "2021", + features = [ + "default", + "fs", + "net", + "sync", + "time", + "tokio-util", + ], + visibility = [], + deps = [ + ":futures-core-0.3.31", + ":pin-project-lite-0.2.14", + ":tokio-1.43.0", + ":tokio-util-0.7.13", + ], +) + +alias( + name = "tokio-util", + actual = ":tokio-util-0.7.13", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "tokio-util-0.7.13", + srcs = [ + "vendor/tokio-util-0.7.13/src/cfg.rs", + "vendor/tokio-util-0.7.13/src/codec/any_delimiter_codec.rs", + "vendor/tokio-util-0.7.13/src/codec/bytes_codec.rs", + "vendor/tokio-util-0.7.13/src/codec/decoder.rs", + "vendor/tokio-util-0.7.13/src/codec/encoder.rs", + "vendor/tokio-util-0.7.13/src/codec/framed.rs", + "vendor/tokio-util-0.7.13/src/codec/framed_impl.rs", + "vendor/tokio-util-0.7.13/src/codec/framed_read.rs", + "vendor/tokio-util-0.7.13/src/codec/framed_write.rs", + "vendor/tokio-util-0.7.13/src/codec/length_delimited.rs", + "vendor/tokio-util-0.7.13/src/codec/lines_codec.rs", + "vendor/tokio-util-0.7.13/src/codec/mod.rs", + "vendor/tokio-util-0.7.13/src/compat.rs", + "vendor/tokio-util-0.7.13/src/context.rs", + "vendor/tokio-util-0.7.13/src/either.rs", + "vendor/tokio-util-0.7.13/src/io/copy_to_bytes.rs", + "vendor/tokio-util-0.7.13/src/io/inspect.rs", + "vendor/tokio-util-0.7.13/src/io/mod.rs", + "vendor/tokio-util-0.7.13/src/io/read_buf.rs", + "vendor/tokio-util-0.7.13/src/io/reader_stream.rs", + "vendor/tokio-util-0.7.13/src/io/sink_writer.rs", + "vendor/tokio-util-0.7.13/src/io/stream_reader.rs", + "vendor/tokio-util-0.7.13/src/io/sync_bridge.rs", + "vendor/tokio-util-0.7.13/src/lib.rs", + "vendor/tokio-util-0.7.13/src/loom.rs", + "vendor/tokio-util-0.7.13/src/net/mod.rs", + "vendor/tokio-util-0.7.13/src/net/unix/mod.rs", + "vendor/tokio-util-0.7.13/src/sync/cancellation_token.rs", + "vendor/tokio-util-0.7.13/src/sync/cancellation_token/guard.rs", + "vendor/tokio-util-0.7.13/src/sync/cancellation_token/tree_node.rs", + "vendor/tokio-util-0.7.13/src/sync/mod.rs", + "vendor/tokio-util-0.7.13/src/sync/mpsc.rs", + "vendor/tokio-util-0.7.13/src/sync/poll_semaphore.rs", + "vendor/tokio-util-0.7.13/src/sync/reusable_box.rs", + "vendor/tokio-util-0.7.13/src/sync/tests/loom_cancellation_token.rs", + "vendor/tokio-util-0.7.13/src/sync/tests/mod.rs", + "vendor/tokio-util-0.7.13/src/task/abort_on_drop.rs", + "vendor/tokio-util-0.7.13/src/task/join_map.rs", + "vendor/tokio-util-0.7.13/src/task/mod.rs", + "vendor/tokio-util-0.7.13/src/task/spawn_pinned.rs", + "vendor/tokio-util-0.7.13/src/task/task_tracker.rs", + "vendor/tokio-util-0.7.13/src/time/delay_queue.rs", + "vendor/tokio-util-0.7.13/src/time/mod.rs", + "vendor/tokio-util-0.7.13/src/time/wheel/level.rs", + "vendor/tokio-util-0.7.13/src/time/wheel/mod.rs", + "vendor/tokio-util-0.7.13/src/time/wheel/stack.rs", + "vendor/tokio-util-0.7.13/src/tracing.rs", + "vendor/tokio-util-0.7.13/src/udp/frame.rs", + "vendor/tokio-util-0.7.13/src/udp/mod.rs", + "vendor/tokio-util-0.7.13/src/util/maybe_dangling.rs", + "vendor/tokio-util-0.7.13/src/util/mod.rs", + "vendor/tokio-util-0.7.13/src/util/poll_buf.rs", + ], + crate = "tokio_util", + crate_root = "vendor/tokio-util-0.7.13/src/lib.rs", + edition = "2021", + features = [ + "codec", + "default", + "io", + "io-util", + ], + visibility = [], + deps = [ + ":bytes-1.10.0", + ":futures-core-0.3.31", + ":futures-sink-0.3.31", + ":pin-project-lite-0.2.14", + ":tokio-1.43.0", + ], +) + +cargo.rust_library( + name = "toml-0.8.19", + srcs = [ + "vendor/toml-0.8.19/src/de.rs", + "vendor/toml-0.8.19/src/edit.rs", + "vendor/toml-0.8.19/src/fmt.rs", + "vendor/toml-0.8.19/src/lib.rs", + "vendor/toml-0.8.19/src/macros.rs", + "vendor/toml-0.8.19/src/map.rs", + "vendor/toml-0.8.19/src/ser.rs", + "vendor/toml-0.8.19/src/table.rs", + "vendor/toml-0.8.19/src/value.rs", + ], + crate = "toml", + crate_root = "vendor/toml-0.8.19/src/lib.rs", + edition = "2021", + features = [ + "default", + "display", + "parse", + ], + visibility = [], + deps = [ + ":serde-1.0.217", + ":serde_spanned-0.6.7", + ":toml_datetime-0.6.8", + ":toml_edit-0.22.20", + ], +) + +cargo.rust_library( + name = "toml_datetime-0.6.8", + srcs = [ + "vendor/toml_datetime-0.6.8/src/datetime.rs", + "vendor/toml_datetime-0.6.8/src/lib.rs", + ], + crate = "toml_datetime", + crate_root = "vendor/toml_datetime-0.6.8/src/lib.rs", + edition = "2021", + features = ["serde"], + visibility = [], + deps = [":serde-1.0.217"], +) + +cargo.rust_library( + name = "toml_edit-0.22.20", + srcs = [ + "vendor/toml_edit-0.22.20/src/array.rs", + "vendor/toml_edit-0.22.20/src/array_of_tables.rs", + "vendor/toml_edit-0.22.20/src/de/array.rs", + "vendor/toml_edit-0.22.20/src/de/datetime.rs", + "vendor/toml_edit-0.22.20/src/de/key.rs", + "vendor/toml_edit-0.22.20/src/de/mod.rs", + "vendor/toml_edit-0.22.20/src/de/spanned.rs", + "vendor/toml_edit-0.22.20/src/de/table.rs", + "vendor/toml_edit-0.22.20/src/de/table_enum.rs", + "vendor/toml_edit-0.22.20/src/de/value.rs", + "vendor/toml_edit-0.22.20/src/document.rs", + "vendor/toml_edit-0.22.20/src/encode.rs", + "vendor/toml_edit-0.22.20/src/error.rs", + "vendor/toml_edit-0.22.20/src/index.rs", + "vendor/toml_edit-0.22.20/src/inline_table.rs", + "vendor/toml_edit-0.22.20/src/internal_string.rs", + "vendor/toml_edit-0.22.20/src/item.rs", + "vendor/toml_edit-0.22.20/src/key.rs", + "vendor/toml_edit-0.22.20/src/lib.rs", + "vendor/toml_edit-0.22.20/src/parser/array.rs", + "vendor/toml_edit-0.22.20/src/parser/datetime.rs", + "vendor/toml_edit-0.22.20/src/parser/document.rs", + "vendor/toml_edit-0.22.20/src/parser/error.rs", + "vendor/toml_edit-0.22.20/src/parser/inline_table.rs", + "vendor/toml_edit-0.22.20/src/parser/key.rs", + "vendor/toml_edit-0.22.20/src/parser/mod.rs", + "vendor/toml_edit-0.22.20/src/parser/numbers.rs", + "vendor/toml_edit-0.22.20/src/parser/state.rs", + "vendor/toml_edit-0.22.20/src/parser/strings.rs", + "vendor/toml_edit-0.22.20/src/parser/table.rs", + "vendor/toml_edit-0.22.20/src/parser/trivia.rs", + "vendor/toml_edit-0.22.20/src/parser/value.rs", + "vendor/toml_edit-0.22.20/src/raw_string.rs", + "vendor/toml_edit-0.22.20/src/repr.rs", + "vendor/toml_edit-0.22.20/src/ser/array.rs", + "vendor/toml_edit-0.22.20/src/ser/key.rs", + "vendor/toml_edit-0.22.20/src/ser/map.rs", + "vendor/toml_edit-0.22.20/src/ser/mod.rs", + "vendor/toml_edit-0.22.20/src/ser/pretty.rs", + "vendor/toml_edit-0.22.20/src/ser/value.rs", + "vendor/toml_edit-0.22.20/src/table.rs", + "vendor/toml_edit-0.22.20/src/value.rs", + "vendor/toml_edit-0.22.20/src/visit.rs", + "vendor/toml_edit-0.22.20/src/visit_mut.rs", + ], + crate = "toml_edit", + crate_root = "vendor/toml_edit-0.22.20/src/lib.rs", + edition = "2021", + features = [ + "default", + "display", + "parse", + "serde", + ], + visibility = [], + deps = [ + ":indexmap-2.4.0", + ":serde-1.0.217", + ":serde_spanned-0.6.7", + ":toml_datetime-0.6.8", + ":winnow-0.6.20", + ], +) + +cargo.rust_library( + name = "tower-0.4.13", + srcs = [ + "vendor/tower-0.4.13/src/balance/error.rs", + "vendor/tower-0.4.13/src/balance/mod.rs", + "vendor/tower-0.4.13/src/balance/p2c/layer.rs", + "vendor/tower-0.4.13/src/balance/p2c/make.rs", + "vendor/tower-0.4.13/src/balance/p2c/mod.rs", + "vendor/tower-0.4.13/src/balance/p2c/service.rs", + "vendor/tower-0.4.13/src/balance/p2c/test.rs", + "vendor/tower-0.4.13/src/balance/pool/mod.rs", + "vendor/tower-0.4.13/src/balance/pool/test.rs", + "vendor/tower-0.4.13/src/buffer/error.rs", + "vendor/tower-0.4.13/src/buffer/future.rs", + "vendor/tower-0.4.13/src/buffer/layer.rs", + "vendor/tower-0.4.13/src/buffer/message.rs", + "vendor/tower-0.4.13/src/buffer/mod.rs", + "vendor/tower-0.4.13/src/buffer/service.rs", + "vendor/tower-0.4.13/src/buffer/worker.rs", + "vendor/tower-0.4.13/src/builder/mod.rs", + "vendor/tower-0.4.13/src/discover/error.rs", + "vendor/tower-0.4.13/src/discover/list.rs", + "vendor/tower-0.4.13/src/discover/mod.rs", + "vendor/tower-0.4.13/src/filter/future.rs", + "vendor/tower-0.4.13/src/filter/layer.rs", + "vendor/tower-0.4.13/src/filter/mod.rs", + "vendor/tower-0.4.13/src/filter/predicate.rs", + "vendor/tower-0.4.13/src/hedge/delay.rs", + "vendor/tower-0.4.13/src/hedge/latency.rs", + "vendor/tower-0.4.13/src/hedge/mod.rs", + "vendor/tower-0.4.13/src/hedge/rotating_histogram.rs", + "vendor/tower-0.4.13/src/hedge/select.rs", + "vendor/tower-0.4.13/src/layer.rs", + "vendor/tower-0.4.13/src/lib.rs", + "vendor/tower-0.4.13/src/limit/concurrency/future.rs", + "vendor/tower-0.4.13/src/limit/concurrency/layer.rs", + "vendor/tower-0.4.13/src/limit/concurrency/mod.rs", + "vendor/tower-0.4.13/src/limit/concurrency/never.rs", + "vendor/tower-0.4.13/src/limit/concurrency/service.rs", + "vendor/tower-0.4.13/src/limit/mod.rs", + "vendor/tower-0.4.13/src/limit/rate/layer.rs", + "vendor/tower-0.4.13/src/limit/rate/mod.rs", + "vendor/tower-0.4.13/src/limit/rate/rate.rs", + "vendor/tower-0.4.13/src/limit/rate/service.rs", + "vendor/tower-0.4.13/src/load/completion.rs", + "vendor/tower-0.4.13/src/load/constant.rs", + "vendor/tower-0.4.13/src/load/mod.rs", + "vendor/tower-0.4.13/src/load/peak_ewma.rs", + "vendor/tower-0.4.13/src/load/pending_requests.rs", + "vendor/tower-0.4.13/src/load_shed/error.rs", + "vendor/tower-0.4.13/src/load_shed/future.rs", + "vendor/tower-0.4.13/src/load_shed/layer.rs", + "vendor/tower-0.4.13/src/load_shed/mod.rs", + "vendor/tower-0.4.13/src/macros.rs", + "vendor/tower-0.4.13/src/make/make_connection.rs", + "vendor/tower-0.4.13/src/make/make_service.rs", + "vendor/tower-0.4.13/src/make/make_service/shared.rs", + "vendor/tower-0.4.13/src/make/mod.rs", + "vendor/tower-0.4.13/src/ready_cache/cache.rs", + "vendor/tower-0.4.13/src/ready_cache/error.rs", + "vendor/tower-0.4.13/src/ready_cache/mod.rs", + "vendor/tower-0.4.13/src/reconnect/future.rs", + "vendor/tower-0.4.13/src/reconnect/mod.rs", + "vendor/tower-0.4.13/src/retry/budget.rs", + "vendor/tower-0.4.13/src/retry/future.rs", + "vendor/tower-0.4.13/src/retry/layer.rs", + "vendor/tower-0.4.13/src/retry/mod.rs", + "vendor/tower-0.4.13/src/retry/never.rs", + "vendor/tower-0.4.13/src/retry/policy.rs", + "vendor/tower-0.4.13/src/spawn_ready/future.rs", + "vendor/tower-0.4.13/src/spawn_ready/layer.rs", + "vendor/tower-0.4.13/src/spawn_ready/make.rs", + "vendor/tower-0.4.13/src/spawn_ready/mod.rs", + "vendor/tower-0.4.13/src/spawn_ready/service.rs", + "vendor/tower-0.4.13/src/steer/mod.rs", + "vendor/tower-0.4.13/src/timeout/error.rs", + "vendor/tower-0.4.13/src/timeout/future.rs", + "vendor/tower-0.4.13/src/timeout/layer.rs", + "vendor/tower-0.4.13/src/timeout/mod.rs", + "vendor/tower-0.4.13/src/util/and_then.rs", + "vendor/tower-0.4.13/src/util/boxed/layer.rs", + "vendor/tower-0.4.13/src/util/boxed/mod.rs", + "vendor/tower-0.4.13/src/util/boxed/sync.rs", + "vendor/tower-0.4.13/src/util/boxed/unsync.rs", + "vendor/tower-0.4.13/src/util/boxed_clone.rs", + "vendor/tower-0.4.13/src/util/call_all/common.rs", + "vendor/tower-0.4.13/src/util/call_all/mod.rs", + "vendor/tower-0.4.13/src/util/call_all/ordered.rs", + "vendor/tower-0.4.13/src/util/call_all/unordered.rs", + "vendor/tower-0.4.13/src/util/either.rs", + "vendor/tower-0.4.13/src/util/future_service.rs", + "vendor/tower-0.4.13/src/util/map_err.rs", + "vendor/tower-0.4.13/src/util/map_future.rs", + "vendor/tower-0.4.13/src/util/map_request.rs", + "vendor/tower-0.4.13/src/util/map_response.rs", + "vendor/tower-0.4.13/src/util/map_result.rs", + "vendor/tower-0.4.13/src/util/mod.rs", + "vendor/tower-0.4.13/src/util/oneshot.rs", + "vendor/tower-0.4.13/src/util/optional/error.rs", + "vendor/tower-0.4.13/src/util/optional/future.rs", + "vendor/tower-0.4.13/src/util/optional/mod.rs", + "vendor/tower-0.4.13/src/util/ready.rs", + "vendor/tower-0.4.13/src/util/service_fn.rs", + "vendor/tower-0.4.13/src/util/then.rs", + ], + crate = "tower", + crate_root = "vendor/tower-0.4.13/src/lib.rs", + edition = "2018", + features = [ + "__common", + "default", + "futures-core", + "futures-util", + "log", + "pin-project", + "pin-project-lite", + "tracing", + "util", + ], + visibility = [], + deps = [ + ":futures-core-0.3.31", + ":futures-util-0.3.31", + ":pin-project-1.1.5", + ":pin-project-lite-0.2.14", + ":tower-layer-0.3.3", + ":tower-service-0.3.3", + ":tracing-0.1.41", + ], +) + +alias( + name = "tower", + actual = ":tower-0.5.2", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "tower-0.5.2", + srcs = [ + "vendor/tower-0.5.2/src/balance/error.rs", + "vendor/tower-0.5.2/src/balance/mod.rs", + "vendor/tower-0.5.2/src/balance/p2c/layer.rs", + "vendor/tower-0.5.2/src/balance/p2c/make.rs", + "vendor/tower-0.5.2/src/balance/p2c/mod.rs", + "vendor/tower-0.5.2/src/balance/p2c/service.rs", + "vendor/tower-0.5.2/src/balance/p2c/test.rs", + "vendor/tower-0.5.2/src/buffer/error.rs", + "vendor/tower-0.5.2/src/buffer/future.rs", + "vendor/tower-0.5.2/src/buffer/layer.rs", + "vendor/tower-0.5.2/src/buffer/message.rs", + "vendor/tower-0.5.2/src/buffer/mod.rs", + "vendor/tower-0.5.2/src/buffer/service.rs", + "vendor/tower-0.5.2/src/buffer/worker.rs", + "vendor/tower-0.5.2/src/builder/mod.rs", + "vendor/tower-0.5.2/src/discover/list.rs", + "vendor/tower-0.5.2/src/discover/mod.rs", + "vendor/tower-0.5.2/src/filter/future.rs", + "vendor/tower-0.5.2/src/filter/layer.rs", + "vendor/tower-0.5.2/src/filter/mod.rs", + "vendor/tower-0.5.2/src/filter/predicate.rs", + "vendor/tower-0.5.2/src/hedge/delay.rs", + "vendor/tower-0.5.2/src/hedge/latency.rs", + "vendor/tower-0.5.2/src/hedge/mod.rs", + "vendor/tower-0.5.2/src/hedge/rotating_histogram.rs", + "vendor/tower-0.5.2/src/hedge/select.rs", + "vendor/tower-0.5.2/src/layer.rs", + "vendor/tower-0.5.2/src/lib.rs", + "vendor/tower-0.5.2/src/limit/concurrency/future.rs", + "vendor/tower-0.5.2/src/limit/concurrency/layer.rs", + "vendor/tower-0.5.2/src/limit/concurrency/mod.rs", + "vendor/tower-0.5.2/src/limit/concurrency/service.rs", + "vendor/tower-0.5.2/src/limit/mod.rs", + "vendor/tower-0.5.2/src/limit/rate/layer.rs", + "vendor/tower-0.5.2/src/limit/rate/mod.rs", + "vendor/tower-0.5.2/src/limit/rate/rate.rs", + "vendor/tower-0.5.2/src/limit/rate/service.rs", + "vendor/tower-0.5.2/src/load/completion.rs", + "vendor/tower-0.5.2/src/load/constant.rs", + "vendor/tower-0.5.2/src/load/mod.rs", + "vendor/tower-0.5.2/src/load/peak_ewma.rs", + "vendor/tower-0.5.2/src/load/pending_requests.rs", + "vendor/tower-0.5.2/src/load_shed/error.rs", + "vendor/tower-0.5.2/src/load_shed/future.rs", + "vendor/tower-0.5.2/src/load_shed/layer.rs", + "vendor/tower-0.5.2/src/load_shed/mod.rs", + "vendor/tower-0.5.2/src/macros.rs", + "vendor/tower-0.5.2/src/make/make_connection.rs", + "vendor/tower-0.5.2/src/make/make_service.rs", + "vendor/tower-0.5.2/src/make/make_service/shared.rs", + "vendor/tower-0.5.2/src/make/mod.rs", + "vendor/tower-0.5.2/src/ready_cache/cache.rs", + "vendor/tower-0.5.2/src/ready_cache/error.rs", + "vendor/tower-0.5.2/src/ready_cache/mod.rs", + "vendor/tower-0.5.2/src/reconnect/future.rs", + "vendor/tower-0.5.2/src/reconnect/mod.rs", + "vendor/tower-0.5.2/src/retry/backoff.rs", + "vendor/tower-0.5.2/src/retry/budget/mod.rs", + "vendor/tower-0.5.2/src/retry/budget/tps_budget.rs", + "vendor/tower-0.5.2/src/retry/future.rs", + "vendor/tower-0.5.2/src/retry/layer.rs", + "vendor/tower-0.5.2/src/retry/mod.rs", + "vendor/tower-0.5.2/src/retry/policy.rs", + "vendor/tower-0.5.2/src/spawn_ready/future.rs", + "vendor/tower-0.5.2/src/spawn_ready/layer.rs", + "vendor/tower-0.5.2/src/spawn_ready/mod.rs", + "vendor/tower-0.5.2/src/spawn_ready/service.rs", + "vendor/tower-0.5.2/src/steer/mod.rs", + "vendor/tower-0.5.2/src/timeout/error.rs", + "vendor/tower-0.5.2/src/timeout/future.rs", + "vendor/tower-0.5.2/src/timeout/layer.rs", + "vendor/tower-0.5.2/src/timeout/mod.rs", + "vendor/tower-0.5.2/src/util/and_then.rs", + "vendor/tower-0.5.2/src/util/boxed/layer.rs", + "vendor/tower-0.5.2/src/util/boxed/layer_clone.rs", + "vendor/tower-0.5.2/src/util/boxed/layer_clone_sync.rs", + "vendor/tower-0.5.2/src/util/boxed/mod.rs", + "vendor/tower-0.5.2/src/util/boxed/sync.rs", + "vendor/tower-0.5.2/src/util/boxed/unsync.rs", + "vendor/tower-0.5.2/src/util/boxed_clone.rs", + "vendor/tower-0.5.2/src/util/boxed_clone_sync.rs", + "vendor/tower-0.5.2/src/util/call_all/common.rs", + "vendor/tower-0.5.2/src/util/call_all/mod.rs", + "vendor/tower-0.5.2/src/util/call_all/ordered.rs", + "vendor/tower-0.5.2/src/util/call_all/unordered.rs", + "vendor/tower-0.5.2/src/util/either.rs", + "vendor/tower-0.5.2/src/util/future_service.rs", + "vendor/tower-0.5.2/src/util/map_err.rs", + "vendor/tower-0.5.2/src/util/map_future.rs", + "vendor/tower-0.5.2/src/util/map_request.rs", + "vendor/tower-0.5.2/src/util/map_response.rs", + "vendor/tower-0.5.2/src/util/map_result.rs", + "vendor/tower-0.5.2/src/util/mod.rs", + "vendor/tower-0.5.2/src/util/oneshot.rs", + "vendor/tower-0.5.2/src/util/optional/error.rs", + "vendor/tower-0.5.2/src/util/optional/future.rs", + "vendor/tower-0.5.2/src/util/optional/mod.rs", + "vendor/tower-0.5.2/src/util/ready.rs", + "vendor/tower-0.5.2/src/util/rng.rs", + "vendor/tower-0.5.2/src/util/service_fn.rs", + "vendor/tower-0.5.2/src/util/then.rs", + ], + crate = "tower", + crate_root = "vendor/tower-0.5.2/src/lib.rs", + edition = "2018", + features = [ + "__common", + "futures-core", + "futures-util", + "log", + "make", + "pin-project-lite", + "sync_wrapper", + "timeout", + "tokio", + "tracing", + "util", + ], + visibility = [], + deps = [ + ":futures-core-0.3.31", + ":futures-util-0.3.31", + ":pin-project-lite-0.2.14", + ":sync_wrapper-1.0.1", + ":tokio-1.43.0", + ":tower-layer-0.3.3", + ":tower-service-0.3.3", + ":tracing-0.1.41", + ], +) + +alias( + name = "tower-http", + actual = ":tower-http-0.6.1", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "tower-http-0.6.1", + srcs = [ + "vendor/tower-http-0.6.1/src/add_extension.rs", + "vendor/tower-http-0.6.1/src/auth/add_authorization.rs", + "vendor/tower-http-0.6.1/src/auth/async_require_authorization.rs", + "vendor/tower-http-0.6.1/src/auth/mod.rs", + "vendor/tower-http-0.6.1/src/auth/require_authorization.rs", + "vendor/tower-http-0.6.1/src/body.rs", + "vendor/tower-http-0.6.1/src/builder.rs", + "vendor/tower-http-0.6.1/src/catch_panic.rs", + "vendor/tower-http-0.6.1/src/classify/grpc_errors_as_failures.rs", + "vendor/tower-http-0.6.1/src/classify/map_failure_class.rs", + "vendor/tower-http-0.6.1/src/classify/mod.rs", + "vendor/tower-http-0.6.1/src/classify/status_in_range_is_error.rs", + "vendor/tower-http-0.6.1/src/compression/body.rs", + "vendor/tower-http-0.6.1/src/compression/future.rs", + "vendor/tower-http-0.6.1/src/compression/layer.rs", + "vendor/tower-http-0.6.1/src/compression/mod.rs", + "vendor/tower-http-0.6.1/src/compression/pin_project_cfg.rs", + "vendor/tower-http-0.6.1/src/compression/predicate.rs", + "vendor/tower-http-0.6.1/src/compression/service.rs", + "vendor/tower-http-0.6.1/src/compression_utils.rs", + "vendor/tower-http-0.6.1/src/content_encoding.rs", + "vendor/tower-http-0.6.1/src/cors/allow_credentials.rs", + "vendor/tower-http-0.6.1/src/cors/allow_headers.rs", + "vendor/tower-http-0.6.1/src/cors/allow_methods.rs", + "vendor/tower-http-0.6.1/src/cors/allow_origin.rs", + "vendor/tower-http-0.6.1/src/cors/allow_private_network.rs", + "vendor/tower-http-0.6.1/src/cors/expose_headers.rs", + "vendor/tower-http-0.6.1/src/cors/max_age.rs", + "vendor/tower-http-0.6.1/src/cors/mod.rs", + "vendor/tower-http-0.6.1/src/cors/tests.rs", + "vendor/tower-http-0.6.1/src/cors/vary.rs", + "vendor/tower-http-0.6.1/src/decompression/body.rs", + "vendor/tower-http-0.6.1/src/decompression/future.rs", + "vendor/tower-http-0.6.1/src/decompression/layer.rs", + "vendor/tower-http-0.6.1/src/decompression/mod.rs", + "vendor/tower-http-0.6.1/src/decompression/request/future.rs", + "vendor/tower-http-0.6.1/src/decompression/request/layer.rs", + "vendor/tower-http-0.6.1/src/decompression/request/mod.rs", + "vendor/tower-http-0.6.1/src/decompression/request/service.rs", + "vendor/tower-http-0.6.1/src/decompression/service.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/mod.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/and.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/clone_body_fn.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/filter_credentials.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/limited.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/mod.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/or.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/redirect_fn.rs", + "vendor/tower-http-0.6.1/src/follow_redirect/policy/same_origin.rs", + "vendor/tower-http-0.6.1/src/lib.rs", + "vendor/tower-http-0.6.1/src/limit/body.rs", + "vendor/tower-http-0.6.1/src/limit/future.rs", + "vendor/tower-http-0.6.1/src/limit/layer.rs", + "vendor/tower-http-0.6.1/src/limit/mod.rs", + "vendor/tower-http-0.6.1/src/limit/service.rs", + "vendor/tower-http-0.6.1/src/macros.rs", + "vendor/tower-http-0.6.1/src/map_request_body.rs", + "vendor/tower-http-0.6.1/src/map_response_body.rs", + "vendor/tower-http-0.6.1/src/metrics/in_flight_requests.rs", + "vendor/tower-http-0.6.1/src/metrics/mod.rs", + "vendor/tower-http-0.6.1/src/normalize_path.rs", + "vendor/tower-http-0.6.1/src/propagate_header.rs", + "vendor/tower-http-0.6.1/src/request_id.rs", + "vendor/tower-http-0.6.1/src/sensitive_headers.rs", + "vendor/tower-http-0.6.1/src/services/fs/mod.rs", + "vendor/tower-http-0.6.1/src/services/fs/serve_dir/future.rs", + "vendor/tower-http-0.6.1/src/services/fs/serve_dir/headers.rs", + "vendor/tower-http-0.6.1/src/services/fs/serve_dir/mod.rs", + "vendor/tower-http-0.6.1/src/services/fs/serve_dir/open_file.rs", + "vendor/tower-http-0.6.1/src/services/fs/serve_dir/tests.rs", + "vendor/tower-http-0.6.1/src/services/fs/serve_file.rs", + "vendor/tower-http-0.6.1/src/services/mod.rs", + "vendor/tower-http-0.6.1/src/services/redirect.rs", + "vendor/tower-http-0.6.1/src/set_header/mod.rs", + "vendor/tower-http-0.6.1/src/set_header/request.rs", + "vendor/tower-http-0.6.1/src/set_header/response.rs", + "vendor/tower-http-0.6.1/src/set_status.rs", + "vendor/tower-http-0.6.1/src/test_helpers.rs", + "vendor/tower-http-0.6.1/src/timeout/body.rs", + "vendor/tower-http-0.6.1/src/timeout/mod.rs", + "vendor/tower-http-0.6.1/src/timeout/service.rs", + "vendor/tower-http-0.6.1/src/trace/body.rs", + "vendor/tower-http-0.6.1/src/trace/future.rs", + "vendor/tower-http-0.6.1/src/trace/layer.rs", + "vendor/tower-http-0.6.1/src/trace/make_span.rs", + "vendor/tower-http-0.6.1/src/trace/mod.rs", + "vendor/tower-http-0.6.1/src/trace/on_body_chunk.rs", + "vendor/tower-http-0.6.1/src/trace/on_eos.rs", + "vendor/tower-http-0.6.1/src/trace/on_failure.rs", + "vendor/tower-http-0.6.1/src/trace/on_request.rs", + "vendor/tower-http-0.6.1/src/trace/on_response.rs", + "vendor/tower-http-0.6.1/src/trace/service.rs", + "vendor/tower-http-0.6.1/src/validate_request.rs", + ], + crate = "tower_http", + crate_root = "vendor/tower-http-0.6.1/src/lib.rs", + edition = "2018", + features = [ + "async-compression", + "cors", + "decompression-br", + "decompression-deflate", + "decompression-full", + "decompression-gzip", + "decompression-zstd", + "default", + "futures-core", + "tokio", + "tokio-util", + "trace", + "tracing", + ], + visibility = [], + deps = [ + ":async-compression-0.4.12", + ":bitflags-2.6.0", + ":bytes-1.10.0", + ":futures-core-0.3.31", + ":http-1.1.0", + ":http-body-1.0.1", + ":http-body-util-0.1.2", + ":pin-project-lite-0.2.14", + ":tokio-1.43.0", + ":tokio-util-0.7.13", + ":tower-layer-0.3.3", + ":tower-service-0.3.3", + ":tracing-0.1.41", + ], +) + +cargo.rust_library( + name = "tower-layer-0.3.3", + srcs = [ + "vendor/tower-layer-0.3.3/src/identity.rs", + "vendor/tower-layer-0.3.3/src/layer_fn.rs", + "vendor/tower-layer-0.3.3/src/lib.rs", + "vendor/tower-layer-0.3.3/src/stack.rs", + "vendor/tower-layer-0.3.3/src/tuple.rs", + ], + crate = "tower_layer", + crate_root = "vendor/tower-layer-0.3.3/src/lib.rs", + edition = "2018", + visibility = [], +) + +cargo.rust_library( + name = "tower-service-0.3.3", + srcs = ["vendor/tower-service-0.3.3/src/lib.rs"], + crate = "tower_service", + crate_root = "vendor/tower-service-0.3.3/src/lib.rs", + edition = "2018", + visibility = [], +) + +alias( + name = "tracing", + actual = ":tracing-0.1.41", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "tracing-0.1.41", + srcs = [ + "vendor/tracing-0.1.41/src/dispatcher.rs", + "vendor/tracing-0.1.41/src/field.rs", + "vendor/tracing-0.1.41/src/instrument.rs", + "vendor/tracing-0.1.41/src/level_filters.rs", + "vendor/tracing-0.1.41/src/lib.rs", + "vendor/tracing-0.1.41/src/macros.rs", + "vendor/tracing-0.1.41/src/span.rs", + "vendor/tracing-0.1.41/src/stdlib.rs", + "vendor/tracing-0.1.41/src/subscriber.rs", + ], + crate = "tracing", + crate_root = "vendor/tracing-0.1.41/src/lib.rs", + edition = "2018", features = [ - "bytes", + "attributes", "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", + "log", + "std", + "tracing-attributes", ], - platform = { - "linux-arm64": dict( - deps = [ - ":libc-0.2.169", - ":signal-hook-registry-1.4.2", - ":socket2-0.5.7", - ], - ), - "linux-x86_64": dict( - deps = [ - ":libc-0.2.169", - ":signal-hook-registry-1.4.2", - ":socket2-0.5.7", - ], - ), - "macos-arm64": dict( - deps = [ - ":libc-0.2.169", - ":signal-hook-registry-1.4.2", - ":socket2-0.5.7", - ], - ), - "macos-x86_64": dict( - deps = [ - ":libc-0.2.169", - ":signal-hook-registry-1.4.2", - ":socket2-0.5.7", - ], - ), - "windows-gnu": dict( - deps = [ - ":socket2-0.5.7", - ":windows-sys-0.52.0", - ], - ), - "windows-msvc": dict( - deps = [ - ":socket2-0.5.7", - ":windows-sys-0.52.0", - ], - ), - }, visibility = [], deps = [ - ":bytes-1.10.0", - ":mio-1.0.2", - ":parking_lot-0.12.3", + ":log-0.4.22", ":pin-project-lite-0.2.14", - ":tokio-macros-2.5.0", + ":tracing-attributes-0.1.28", + ":tracing-core-0.1.33", ], ) +alias( + name = "tracing-appender", + actual = ":tracing-appender-0.2.3", + visibility = ["PUBLIC"], +) + cargo.rust_library( - name = "tokio-macros-2.5.0", + name = "tracing-appender-0.2.3", + srcs = [ + "vendor/tracing-appender-0.2.3/src/lib.rs", + "vendor/tracing-appender-0.2.3/src/non_blocking.rs", + "vendor/tracing-appender-0.2.3/src/rolling.rs", + "vendor/tracing-appender-0.2.3/src/rolling/builder.rs", + "vendor/tracing-appender-0.2.3/src/sync.rs", + "vendor/tracing-appender-0.2.3/src/worker.rs", + ], + crate = "tracing_appender", + crate_root = "vendor/tracing-appender-0.2.3/src/lib.rs", + edition = "2018", + visibility = [], + deps = [ + ":crossbeam-channel-0.5.13", + ":thiserror-1.0.65", + ":time-0.3.36", + ":tracing-subscriber-0.3.19", + ], +) + +cargo.rust_library( + name = "tracing-attributes-0.1.28", + srcs = [ + "vendor/tracing-attributes-0.1.28/src/attr.rs", + "vendor/tracing-attributes-0.1.28/src/expand.rs", + "vendor/tracing-attributes-0.1.28/src/lib.rs", + ], + crate = "tracing_attributes", + crate_root = "vendor/tracing-attributes-0.1.28/src/lib.rs", + edition = "2018", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + +cargo.rust_library( + name = "tracing-core-0.1.33", + srcs = [ + "vendor/tracing-core-0.1.33/src/callsite.rs", + "vendor/tracing-core-0.1.33/src/dispatcher.rs", + "vendor/tracing-core-0.1.33/src/event.rs", + "vendor/tracing-core-0.1.33/src/field.rs", + "vendor/tracing-core-0.1.33/src/lazy.rs", + "vendor/tracing-core-0.1.33/src/lib.rs", + "vendor/tracing-core-0.1.33/src/metadata.rs", + "vendor/tracing-core-0.1.33/src/parent.rs", + "vendor/tracing-core-0.1.33/src/span.rs", + "vendor/tracing-core-0.1.33/src/spin/mod.rs", + "vendor/tracing-core-0.1.33/src/spin/mutex.rs", + "vendor/tracing-core-0.1.33/src/spin/once.rs", + "vendor/tracing-core-0.1.33/src/stdlib.rs", + "vendor/tracing-core-0.1.33/src/subscriber.rs", + ], + crate = "tracing_core", + crate_root = "vendor/tracing-core-0.1.33/src/lib.rs", + edition = "2018", + features = [ + "default", + "once_cell", + "std", + ], + visibility = [], + deps = [":once_cell-1.20.3"], +) + +cargo.rust_library( + name = "tracing-log-0.2.0", + srcs = [ + "vendor/tracing-log-0.2.0/src/interest_cache.rs", + "vendor/tracing-log-0.2.0/src/lib.rs", + "vendor/tracing-log-0.2.0/src/log_tracer.rs", + ], + crate = "tracing_log", + crate_root = "vendor/tracing-log-0.2.0/src/lib.rs", + edition = "2018", + features = [ + "log-tracer", + "std", + ], + visibility = [], + deps = [ + ":log-0.4.22", + ":once_cell-1.20.3", + ":tracing-core-0.1.33", + ], +) + +alias( + name = "tracing-subscriber", + actual = ":tracing-subscriber-0.3.19", + visibility = ["PUBLIC"], +) + +cargo.rust_library( + name = "tracing-subscriber-0.3.19", + srcs = [ + "vendor/tracing-subscriber-0.3.19/src/field/debug.rs", + "vendor/tracing-subscriber-0.3.19/src/field/delimited.rs", + "vendor/tracing-subscriber-0.3.19/src/field/display.rs", + "vendor/tracing-subscriber-0.3.19/src/field/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/directive.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/env/builder.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/env/directive.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/env/field.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/env/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/filter_fn.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/layer_filters/combinator.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/layer_filters/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/level.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/filter/targets.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/fmt_layer.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/format/json.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/format/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/format/pretty.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/time/chrono_crate.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/time/datetime.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/time/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/time/time_crate.rs", + "vendor/tracing-subscriber-0.3.19/src/fmt/writer.rs", + "vendor/tracing-subscriber-0.3.19/src/layer/context.rs", + "vendor/tracing-subscriber-0.3.19/src/layer/layered.rs", + "vendor/tracing-subscriber-0.3.19/src/layer/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/layer/tests.rs", + "vendor/tracing-subscriber-0.3.19/src/lib.rs", + "vendor/tracing-subscriber-0.3.19/src/macros.rs", + "vendor/tracing-subscriber-0.3.19/src/prelude.rs", + "vendor/tracing-subscriber-0.3.19/src/registry/extensions.rs", + "vendor/tracing-subscriber-0.3.19/src/registry/mod.rs", + "vendor/tracing-subscriber-0.3.19/src/registry/sharded.rs", + "vendor/tracing-subscriber-0.3.19/src/registry/stack.rs", + "vendor/tracing-subscriber-0.3.19/src/reload.rs", + "vendor/tracing-subscriber-0.3.19/src/sync.rs", + "vendor/tracing-subscriber-0.3.19/src/util.rs", + ], + crate = "tracing_subscriber", + crate_root = "vendor/tracing-subscriber-0.3.19/src/lib.rs", + edition = "2018", + features = [ + "alloc", + "ansi", + "default", + "env-filter", + "fmt", + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "registry", + "sharded-slab", + "smallvec", + "std", + "thread_local", + "tracing", + "tracing-log", + ], + visibility = [], + deps = [ + ":matchers-0.1.0", + ":nu-ansi-term-0.46.0", + ":once_cell-1.20.3", + ":regex-1.11.1", + ":sharded-slab-0.1.7", + ":smallvec-1.13.2", + ":thread_local-1.1.8", + ":tracing-0.1.41", + ":tracing-core-0.1.33", + ":tracing-log-0.2.0", + ], +) + +cargo.rust_library( + name = "trim-in-place-0.1.7", + srcs = ["vendor/trim-in-place-0.1.7/src/lib.rs"], + crate = "trim_in_place", + crate_root = "vendor/trim-in-place-0.1.7/src/lib.rs", + edition = "2021", + visibility = [], +) + +cargo.rust_library( + name = "try-lock-0.2.5", + srcs = ["vendor/try-lock-0.2.5/src/lib.rs"], + crate = "try_lock", + crate_root = "vendor/try-lock-0.2.5/src/lib.rs", + edition = "2015", + visibility = [], +) + +cargo.rust_library( + name = "typed-arena-2.0.2", + srcs = [ + "vendor/typed-arena-2.0.2/src/lib.rs", + "vendor/typed-arena-2.0.2/src/test.rs", + ], + crate = "typed_arena", + crate_root = "vendor/typed-arena-2.0.2/src/lib.rs", + edition = "2015", + features = [ + "default", + "std", + ], + visibility = [], +) + +cargo.rust_library( + name = "typenum-1.17.0", + srcs = [ + "vendor/typenum-1.17.0/src/array.rs", + "vendor/typenum-1.17.0/src/bit.rs", + "vendor/typenum-1.17.0/src/int.rs", + "vendor/typenum-1.17.0/src/lib.rs", + "vendor/typenum-1.17.0/src/marker_traits.rs", + "vendor/typenum-1.17.0/src/operator_aliases.rs", + "vendor/typenum-1.17.0/src/private.rs", + "vendor/typenum-1.17.0/src/type_operators.rs", + "vendor/typenum-1.17.0/src/uint.rs", + ], + crate = "typenum", + crate_root = "vendor/typenum-1.17.0/src/lib.rs", + edition = "2018", + env = { + "OUT_DIR": "$(location :typenum-1.17.0-build-script-main-run[out_dir])", + }, + features = ["force_unix_path_separator"], + visibility = [], +) + +cargo.rust_binary( + name = "typenum-1.17.0-build-script-main", srcs = [ - "vendor/tokio-macros-2.5.0/src/entry.rs", - "vendor/tokio-macros-2.5.0/src/lib.rs", - "vendor/tokio-macros-2.5.0/src/select.rs", + "vendor/typenum-1.17.0/build/generic_const_mappings.rs", + "vendor/typenum-1.17.0/build/main.rs", + "vendor/typenum-1.17.0/build/op.rs", + "vendor/typenum-1.17.0/build/tests.rs", ], - crate = "tokio_macros", - crate_root = "vendor/tokio-macros-2.5.0/src/lib.rs", - edition = "2021", - proc_macro = True, + crate = "build_script_main", + crate_root = "vendor/typenum-1.17.0/build/main.rs", + edition = "2018", + features = ["force_unix_path_separator"], visibility = [], - deps = [ - ":proc-macro2-1.0.86", - ":quote-1.0.36", - ":syn-2.0.87", - ], +) + +buildscript_run( + name = "typenum-1.17.0-build-script-main-run", + package_name = "typenum", + buildscript_rule = ":typenum-1.17.0-build-script-main", + features = ["force_unix_path_separator"], + version = "1.17.0", ) cargo.rust_library( - name = "tokio-native-tls-0.3.1", - srcs = ["vendor/tokio-native-tls-0.3.1/src/lib.rs"], - crate = "tokio_native_tls", - crate_root = "vendor/tokio-native-tls-0.3.1/src/lib.rs", + name = "tz-rs-0.6.14", + srcs = [ + "vendor/tz-rs-0.6.14/src/constants/mod.rs", + "vendor/tz-rs-0.6.14/src/datetime/find.rs", + "vendor/tz-rs-0.6.14/src/datetime/mod.rs", + "vendor/tz-rs-0.6.14/src/error/mod.rs", + "vendor/tz-rs-0.6.14/src/lib.rs", + "vendor/tz-rs-0.6.14/src/parse/mod.rs", + "vendor/tz-rs-0.6.14/src/parse/tz_file.rs", + "vendor/tz-rs-0.6.14/src/parse/tz_string.rs", + "vendor/tz-rs-0.6.14/src/timezone/mod.rs", + "vendor/tz-rs-0.6.14/src/timezone/rule.rs", + "vendor/tz-rs-0.6.14/src/utils/const_fns.rs", + "vendor/tz-rs-0.6.14/src/utils/mod.rs", + "vendor/tz-rs-0.6.14/src/utils/types.rs", + ], + crate = "tz", + crate_root = "vendor/tz-rs-0.6.14/src/lib.rs", edition = "2018", - visibility = [], - deps = [ - ":native-tls-0.2.12", - ":tokio-1.43.0", + features = [ + "alloc", + "const", + "const_fn", + "std", ], + visibility = [], + deps = [":const_fn-0.4.10"], ) cargo.rust_library( - name = "tokio-openssl-0.6.4", + name = "tzdb-0.6.1", srcs = [ - "vendor/tokio-openssl-0.6.4/src/lib.rs", - "vendor/tokio-openssl-0.6.4/src/test.rs", + "vendor/tzdb-0.6.1/src/changelog.rs", + "vendor/tzdb-0.6.1/src/lib.rs", + "vendor/tzdb-0.6.1/src/now.rs", ], - crate = "tokio_openssl", - crate_root = "vendor/tokio-openssl-0.6.4/src/lib.rs", + crate = "tzdb", + crate_root = "vendor/tzdb-0.6.1/src/lib.rs", edition = "2018", + features = [ + "iana-time-zone", + "local", + ], visibility = [], deps = [ - ":futures-util-0.3.31", - ":openssl-0.10.71", - ":openssl-sys-0.9.106", - ":tokio-1.43.0", + ":iana-time-zone-0.1.60", + ":tz-rs-0.6.14", + ":tzdb_data-0.1.2", ], ) cargo.rust_library( - name = "tokio-rustls-0.26.0", + name = "tzdb_data-0.1.2", srcs = [ - "vendor/tokio-rustls-0.26.0/src/client.rs", - "vendor/tokio-rustls-0.26.0/src/common/handshake.rs", - "vendor/tokio-rustls-0.26.0/src/common/mod.rs", - "vendor/tokio-rustls-0.26.0/src/common/test_stream.rs", - "vendor/tokio-rustls-0.26.0/src/lib.rs", - "vendor/tokio-rustls-0.26.0/src/server.rs", - ], - crate = "tokio_rustls", - crate_root = "vendor/tokio-rustls-0.26.0/src/lib.rs", - edition = "2021", - features = [ - "ring", - "tls12", + "vendor/tzdb_data-0.1.2/src/generated/by_name.rs", + "vendor/tzdb_data-0.1.2/src/generated/mod.rs", + "vendor/tzdb_data-0.1.2/src/generated/raw_tzdata.rs", + "vendor/tzdb_data-0.1.2/src/generated/test_all_names.rs", + "vendor/tzdb_data-0.1.2/src/generated/time_zone.rs", + "vendor/tzdb_data-0.1.2/src/generated/tzdata.rs", + "vendor/tzdb_data-0.1.2/src/lib.rs", ], - named_deps = { - "pki_types": ":rustls-pki-types-1.11.0", - }, + crate = "tzdb_data", + crate_root = "vendor/tzdb_data-0.1.2/src/lib.rs", + edition = "2018", visibility = [], - deps = [ - ":rustls-0.23.22", - ":tokio-1.43.0", - ], + deps = [":tz-rs-0.6.14"], ) cargo.rust_library( - name = "tokio-util-0.7.13", + name = "ucd-trie-0.1.6", srcs = [ - "vendor/tokio-util-0.7.13/src/cfg.rs", - "vendor/tokio-util-0.7.13/src/codec/any_delimiter_codec.rs", - "vendor/tokio-util-0.7.13/src/codec/bytes_codec.rs", - "vendor/tokio-util-0.7.13/src/codec/decoder.rs", - "vendor/tokio-util-0.7.13/src/codec/encoder.rs", - "vendor/tokio-util-0.7.13/src/codec/framed.rs", - "vendor/tokio-util-0.7.13/src/codec/framed_impl.rs", - "vendor/tokio-util-0.7.13/src/codec/framed_read.rs", - "vendor/tokio-util-0.7.13/src/codec/framed_write.rs", - "vendor/tokio-util-0.7.13/src/codec/length_delimited.rs", - "vendor/tokio-util-0.7.13/src/codec/lines_codec.rs", - "vendor/tokio-util-0.7.13/src/codec/mod.rs", - "vendor/tokio-util-0.7.13/src/compat.rs", - "vendor/tokio-util-0.7.13/src/context.rs", - "vendor/tokio-util-0.7.13/src/either.rs", - "vendor/tokio-util-0.7.13/src/io/copy_to_bytes.rs", - "vendor/tokio-util-0.7.13/src/io/inspect.rs", - "vendor/tokio-util-0.7.13/src/io/mod.rs", - "vendor/tokio-util-0.7.13/src/io/read_buf.rs", - "vendor/tokio-util-0.7.13/src/io/reader_stream.rs", - "vendor/tokio-util-0.7.13/src/io/sink_writer.rs", - "vendor/tokio-util-0.7.13/src/io/stream_reader.rs", - "vendor/tokio-util-0.7.13/src/io/sync_bridge.rs", - "vendor/tokio-util-0.7.13/src/lib.rs", - "vendor/tokio-util-0.7.13/src/loom.rs", - "vendor/tokio-util-0.7.13/src/net/mod.rs", - "vendor/tokio-util-0.7.13/src/net/unix/mod.rs", - "vendor/tokio-util-0.7.13/src/sync/cancellation_token.rs", - "vendor/tokio-util-0.7.13/src/sync/cancellation_token/guard.rs", - "vendor/tokio-util-0.7.13/src/sync/cancellation_token/tree_node.rs", - "vendor/tokio-util-0.7.13/src/sync/mod.rs", - "vendor/tokio-util-0.7.13/src/sync/mpsc.rs", - "vendor/tokio-util-0.7.13/src/sync/poll_semaphore.rs", - "vendor/tokio-util-0.7.13/src/sync/reusable_box.rs", - "vendor/tokio-util-0.7.13/src/sync/tests/loom_cancellation_token.rs", - "vendor/tokio-util-0.7.13/src/sync/tests/mod.rs", - "vendor/tokio-util-0.7.13/src/task/abort_on_drop.rs", - "vendor/tokio-util-0.7.13/src/task/join_map.rs", - "vendor/tokio-util-0.7.13/src/task/mod.rs", - "vendor/tokio-util-0.7.13/src/task/spawn_pinned.rs", - "vendor/tokio-util-0.7.13/src/task/task_tracker.rs", - "vendor/tokio-util-0.7.13/src/time/delay_queue.rs", - "vendor/tokio-util-0.7.13/src/time/mod.rs", - "vendor/tokio-util-0.7.13/src/time/wheel/level.rs", - "vendor/tokio-util-0.7.13/src/time/wheel/mod.rs", - "vendor/tokio-util-0.7.13/src/time/wheel/stack.rs", - "vendor/tokio-util-0.7.13/src/tracing.rs", - "vendor/tokio-util-0.7.13/src/udp/frame.rs", - "vendor/tokio-util-0.7.13/src/udp/mod.rs", - "vendor/tokio-util-0.7.13/src/util/maybe_dangling.rs", - "vendor/tokio-util-0.7.13/src/util/mod.rs", - "vendor/tokio-util-0.7.13/src/util/poll_buf.rs", + "vendor/ucd-trie-0.1.6/src/general_category.rs", + "vendor/ucd-trie-0.1.6/src/lib.rs", + "vendor/ucd-trie-0.1.6/src/owned.rs", ], - crate = "tokio_util", - crate_root = "vendor/tokio-util-0.7.13/src/lib.rs", + crate = "ucd_trie", + crate_root = "vendor/ucd-trie-0.1.6/src/lib.rs", edition = "2021", - features = [ - "codec", - "default", - "io", - "io-util", - ], + features = ["std"], visibility = [], - deps = [ - ":bytes-1.10.0", - ":futures-core-0.3.31", - ":futures-sink-0.3.31", - ":pin-project-lite-0.2.14", - ":tokio-1.43.0", - ], ) cargo.rust_library( - name = "tower-0.5.2", + name = "unicase-2.7.0", srcs = [ - "vendor/tower-0.5.2/src/balance/error.rs", - "vendor/tower-0.5.2/src/balance/mod.rs", - "vendor/tower-0.5.2/src/balance/p2c/layer.rs", - "vendor/tower-0.5.2/src/balance/p2c/make.rs", - "vendor/tower-0.5.2/src/balance/p2c/mod.rs", - "vendor/tower-0.5.2/src/balance/p2c/service.rs", - "vendor/tower-0.5.2/src/balance/p2c/test.rs", - "vendor/tower-0.5.2/src/buffer/error.rs", - "vendor/tower-0.5.2/src/buffer/future.rs", - "vendor/tower-0.5.2/src/buffer/layer.rs", - "vendor/tower-0.5.2/src/buffer/message.rs", - "vendor/tower-0.5.2/src/buffer/mod.rs", - "vendor/tower-0.5.2/src/buffer/service.rs", - "vendor/tower-0.5.2/src/buffer/worker.rs", - "vendor/tower-0.5.2/src/builder/mod.rs", - "vendor/tower-0.5.2/src/discover/list.rs", - "vendor/tower-0.5.2/src/discover/mod.rs", - "vendor/tower-0.5.2/src/filter/future.rs", - "vendor/tower-0.5.2/src/filter/layer.rs", - "vendor/tower-0.5.2/src/filter/mod.rs", - "vendor/tower-0.5.2/src/filter/predicate.rs", - "vendor/tower-0.5.2/src/hedge/delay.rs", - "vendor/tower-0.5.2/src/hedge/latency.rs", - "vendor/tower-0.5.2/src/hedge/mod.rs", - "vendor/tower-0.5.2/src/hedge/rotating_histogram.rs", - "vendor/tower-0.5.2/src/hedge/select.rs", - "vendor/tower-0.5.2/src/layer.rs", - "vendor/tower-0.5.2/src/lib.rs", - "vendor/tower-0.5.2/src/limit/concurrency/future.rs", - "vendor/tower-0.5.2/src/limit/concurrency/layer.rs", - "vendor/tower-0.5.2/src/limit/concurrency/mod.rs", - "vendor/tower-0.5.2/src/limit/concurrency/service.rs", - "vendor/tower-0.5.2/src/limit/mod.rs", - "vendor/tower-0.5.2/src/limit/rate/layer.rs", - "vendor/tower-0.5.2/src/limit/rate/mod.rs", - "vendor/tower-0.5.2/src/limit/rate/rate.rs", - "vendor/tower-0.5.2/src/limit/rate/service.rs", - "vendor/tower-0.5.2/src/load/completion.rs", - "vendor/tower-0.5.2/src/load/constant.rs", - "vendor/tower-0.5.2/src/load/mod.rs", - "vendor/tower-0.5.2/src/load/peak_ewma.rs", - "vendor/tower-0.5.2/src/load/pending_requests.rs", - "vendor/tower-0.5.2/src/load_shed/error.rs", - "vendor/tower-0.5.2/src/load_shed/future.rs", - "vendor/tower-0.5.2/src/load_shed/layer.rs", - "vendor/tower-0.5.2/src/load_shed/mod.rs", - "vendor/tower-0.5.2/src/macros.rs", - "vendor/tower-0.5.2/src/make/make_connection.rs", - "vendor/tower-0.5.2/src/make/make_service.rs", - "vendor/tower-0.5.2/src/make/make_service/shared.rs", - "vendor/tower-0.5.2/src/make/mod.rs", - "vendor/tower-0.5.2/src/ready_cache/cache.rs", - "vendor/tower-0.5.2/src/ready_cache/error.rs", - "vendor/tower-0.5.2/src/ready_cache/mod.rs", - "vendor/tower-0.5.2/src/reconnect/future.rs", - "vendor/tower-0.5.2/src/reconnect/mod.rs", - "vendor/tower-0.5.2/src/retry/backoff.rs", - "vendor/tower-0.5.2/src/retry/budget/mod.rs", - "vendor/tower-0.5.2/src/retry/budget/tps_budget.rs", - "vendor/tower-0.5.2/src/retry/future.rs", - "vendor/tower-0.5.2/src/retry/layer.rs", - "vendor/tower-0.5.2/src/retry/mod.rs", - "vendor/tower-0.5.2/src/retry/policy.rs", - "vendor/tower-0.5.2/src/spawn_ready/future.rs", - "vendor/tower-0.5.2/src/spawn_ready/layer.rs", - "vendor/tower-0.5.2/src/spawn_ready/mod.rs", - "vendor/tower-0.5.2/src/spawn_ready/service.rs", - "vendor/tower-0.5.2/src/steer/mod.rs", - "vendor/tower-0.5.2/src/timeout/error.rs", - "vendor/tower-0.5.2/src/timeout/future.rs", - "vendor/tower-0.5.2/src/timeout/layer.rs", - "vendor/tower-0.5.2/src/timeout/mod.rs", - "vendor/tower-0.5.2/src/util/and_then.rs", - "vendor/tower-0.5.2/src/util/boxed/layer.rs", - "vendor/tower-0.5.2/src/util/boxed/layer_clone.rs", - "vendor/tower-0.5.2/src/util/boxed/layer_clone_sync.rs", - "vendor/tower-0.5.2/src/util/boxed/mod.rs", - "vendor/tower-0.5.2/src/util/boxed/sync.rs", - "vendor/tower-0.5.2/src/util/boxed/unsync.rs", - "vendor/tower-0.5.2/src/util/boxed_clone.rs", - "vendor/tower-0.5.2/src/util/boxed_clone_sync.rs", - "vendor/tower-0.5.2/src/util/call_all/common.rs", - "vendor/tower-0.5.2/src/util/call_all/mod.rs", - "vendor/tower-0.5.2/src/util/call_all/ordered.rs", - "vendor/tower-0.5.2/src/util/call_all/unordered.rs", - "vendor/tower-0.5.2/src/util/either.rs", - "vendor/tower-0.5.2/src/util/future_service.rs", - "vendor/tower-0.5.2/src/util/map_err.rs", - "vendor/tower-0.5.2/src/util/map_future.rs", - "vendor/tower-0.5.2/src/util/map_request.rs", - "vendor/tower-0.5.2/src/util/map_response.rs", - "vendor/tower-0.5.2/src/util/map_result.rs", - "vendor/tower-0.5.2/src/util/mod.rs", - "vendor/tower-0.5.2/src/util/oneshot.rs", - "vendor/tower-0.5.2/src/util/optional/error.rs", - "vendor/tower-0.5.2/src/util/optional/future.rs", - "vendor/tower-0.5.2/src/util/optional/mod.rs", - "vendor/tower-0.5.2/src/util/ready.rs", - "vendor/tower-0.5.2/src/util/rng.rs", - "vendor/tower-0.5.2/src/util/service_fn.rs", - "vendor/tower-0.5.2/src/util/then.rs", + "vendor/unicase-2.7.0/src/ascii.rs", + "vendor/unicase-2.7.0/src/lib.rs", + "vendor/unicase-2.7.0/src/unicode/map.rs", + "vendor/unicase-2.7.0/src/unicode/mod.rs", + ], + crate = "unicase", + crate_root = "vendor/unicase-2.7.0/src/lib.rs", + edition = "2015", + rustc_flags = ["@$(location :unicase-2.7.0-build-script-run[rustc_flags])"], + visibility = [], +) + +cargo.rust_binary( + name = "unicase-2.7.0-build-script-build", + srcs = [ + "vendor/unicase-2.7.0/build.rs", + "vendor/unicase-2.7.0/src/ascii.rs", + "vendor/unicase-2.7.0/src/lib.rs", + "vendor/unicase-2.7.0/src/unicode/map.rs", + "vendor/unicase-2.7.0/src/unicode/mod.rs", ], - crate = "tower", - crate_root = "vendor/tower-0.5.2/src/lib.rs", + crate = "build_script_build", + crate_root = "vendor/unicase-2.7.0/build.rs", + edition = "2015", + visibility = [], + deps = [":version_check-0.9.5"], +) + +buildscript_run( + name = "unicase-2.7.0-build-script-run", + package_name = "unicase", + buildscript_rule = ":unicase-2.7.0-build-script-build", + version = "2.7.0", +) + +cargo.rust_library( + name = "unicode-bidi-0.3.15", + srcs = [ + "vendor/unicode-bidi-0.3.15/src/char_data/mod.rs", + "vendor/unicode-bidi-0.3.15/src/char_data/tables.rs", + "vendor/unicode-bidi-0.3.15/src/data_source.rs", + "vendor/unicode-bidi-0.3.15/src/deprecated.rs", + "vendor/unicode-bidi-0.3.15/src/explicit.rs", + "vendor/unicode-bidi-0.3.15/src/format_chars.rs", + "vendor/unicode-bidi-0.3.15/src/implicit.rs", + "vendor/unicode-bidi-0.3.15/src/level.rs", + "vendor/unicode-bidi-0.3.15/src/lib.rs", + "vendor/unicode-bidi-0.3.15/src/prepare.rs", + "vendor/unicode-bidi-0.3.15/src/utf16.rs", + ], + crate = "unicode_bidi", + crate_root = "vendor/unicode-bidi-0.3.15/src/lib.rs", edition = "2018", features = [ - "__common", - "futures-core", - "futures-util", - "log", - "make", - "pin-project-lite", - "sync_wrapper", - "timeout", - "tokio", - "tracing", - "util", + "default", + "hardcoded-data", + "std", ], visibility = [], - deps = [ - ":futures-core-0.3.31", - ":futures-util-0.3.31", - ":pin-project-lite-0.2.14", - ":sync_wrapper-1.0.1", - ":tokio-1.43.0", - ":tower-layer-0.3.3", - ":tower-service-0.3.3", - ":tracing-0.1.41", +) + +cargo.rust_library( + name = "unicode-ident-1.0.12", + srcs = [ + "vendor/unicode-ident-1.0.12/src/lib.rs", + "vendor/unicode-ident-1.0.12/src/tables.rs", ], + crate = "unicode_ident", + crate_root = "vendor/unicode-ident-1.0.12/src/lib.rs", + edition = "2018", + visibility = [], ) cargo.rust_library( - name = "tower-layer-0.3.3", + name = "unicode-normalization-0.1.23", srcs = [ - "vendor/tower-layer-0.3.3/src/identity.rs", - "vendor/tower-layer-0.3.3/src/layer_fn.rs", - "vendor/tower-layer-0.3.3/src/lib.rs", - "vendor/tower-layer-0.3.3/src/stack.rs", - "vendor/tower-layer-0.3.3/src/tuple.rs", + "vendor/unicode-normalization-0.1.23/src/__test_api.rs", + "vendor/unicode-normalization-0.1.23/src/decompose.rs", + "vendor/unicode-normalization-0.1.23/src/lib.rs", + "vendor/unicode-normalization-0.1.23/src/lookups.rs", + "vendor/unicode-normalization-0.1.23/src/no_std_prelude.rs", + "vendor/unicode-normalization-0.1.23/src/normalize.rs", + "vendor/unicode-normalization-0.1.23/src/perfect_hash.rs", + "vendor/unicode-normalization-0.1.23/src/quick_check.rs", + "vendor/unicode-normalization-0.1.23/src/recompose.rs", + "vendor/unicode-normalization-0.1.23/src/replace.rs", + "vendor/unicode-normalization-0.1.23/src/stream_safe.rs", + "vendor/unicode-normalization-0.1.23/src/tables.rs", + "vendor/unicode-normalization-0.1.23/src/test.rs", ], - crate = "tower_layer", - crate_root = "vendor/tower-layer-0.3.3/src/lib.rs", + crate = "unicode_normalization", + crate_root = "vendor/unicode-normalization-0.1.23/src/lib.rs", edition = "2018", + features = [ + "default", + "std", + ], visibility = [], + deps = [":tinyvec-1.8.0"], ) cargo.rust_library( - name = "tower-service-0.3.3", - srcs = ["vendor/tower-service-0.3.3/src/lib.rs"], - crate = "tower_service", - crate_root = "vendor/tower-service-0.3.3/src/lib.rs", + name = "unicode-properties-0.1.1", + srcs = [ + "vendor/unicode-properties-0.1.1/src/lib.rs", + "vendor/unicode-properties-0.1.1/src/tables.rs", + ], + crate = "unicode_properties", + crate_root = "vendor/unicode-properties-0.1.1/src/lib.rs", + edition = "2021", + features = [ + "default", + "emoji", + "general-category", + ], + visibility = [], +) + +cargo.rust_library( + name = "unicode-script-0.5.6", + srcs = [ + "vendor/unicode-script-0.5.6/src/lib.rs", + "vendor/unicode-script-0.5.6/src/tables.rs", + ], + crate = "unicode_script", + crate_root = "vendor/unicode-script-0.5.6/src/lib.rs", edition = "2018", visibility = [], ) -alias( - name = "tracing", - actual = ":tracing-0.1.41", - visibility = ["PUBLIC"], +cargo.rust_library( + name = "unicode-security-0.1.1", + srcs = [ + "vendor/unicode-security-0.1.1/src/confusable_detection.rs", + "vendor/unicode-security-0.1.1/src/general_security_profile.rs", + "vendor/unicode-security-0.1.1/src/lib.rs", + "vendor/unicode-security-0.1.1/src/mixed_script.rs", + "vendor/unicode-security-0.1.1/src/restriction_level.rs", + "vendor/unicode-security-0.1.1/src/tables.rs", + "vendor/unicode-security-0.1.1/src/tests.rs", + ], + crate = "unicode_security", + crate_root = "vendor/unicode-security-0.1.1/src/lib.rs", + edition = "2018", + features = ["default"], + visibility = [], + deps = [ + ":unicode-normalization-0.1.23", + ":unicode-script-0.5.6", + ], ) cargo.rust_library( - name = "tracing-0.1.41", + name = "unicode-segmentation-1.11.0", srcs = [ - "vendor/tracing-0.1.41/src/dispatcher.rs", - "vendor/tracing-0.1.41/src/field.rs", - "vendor/tracing-0.1.41/src/instrument.rs", - "vendor/tracing-0.1.41/src/level_filters.rs", - "vendor/tracing-0.1.41/src/lib.rs", - "vendor/tracing-0.1.41/src/macros.rs", - "vendor/tracing-0.1.41/src/span.rs", - "vendor/tracing-0.1.41/src/stdlib.rs", - "vendor/tracing-0.1.41/src/subscriber.rs", + "vendor/unicode-segmentation-1.11.0/src/grapheme.rs", + "vendor/unicode-segmentation-1.11.0/src/lib.rs", + "vendor/unicode-segmentation-1.11.0/src/sentence.rs", + "vendor/unicode-segmentation-1.11.0/src/tables.rs", + "vendor/unicode-segmentation-1.11.0/src/test.rs", + "vendor/unicode-segmentation-1.11.0/src/testdata.rs", + "vendor/unicode-segmentation-1.11.0/src/word.rs", ], - crate = "tracing", - crate_root = "vendor/tracing-0.1.41/src/lib.rs", + crate = "unicode_segmentation", + crate_root = "vendor/unicode-segmentation-1.11.0/src/lib.rs", edition = "2018", - features = [ - "attributes", - "default", - "log", - "std", - "tracing-attributes", + visibility = [], +) + +cargo.rust_library( + name = "unicode-width-0.1.13", + srcs = [ + "vendor/unicode-width-0.1.13/src/lib.rs", + "vendor/unicode-width-0.1.13/src/tables.rs", + ], + crate = "unicode_width", + crate_root = "vendor/unicode-width-0.1.13/src/lib.rs", + edition = "2021", + features = ["default"], + visibility = [], +) + +cargo.rust_library( + name = "unicode-xid-0.2.4", + srcs = [ + "vendor/unicode-xid-0.2.4/src/lib.rs", + "vendor/unicode-xid-0.2.4/src/tables.rs", + "vendor/unicode-xid-0.2.4/src/tests.rs", + ], + crate = "unicode_xid", + crate_root = "vendor/unicode-xid-0.2.4/src/lib.rs", + edition = "2015", + features = ["default"], + visibility = [], +) + +cargo.rust_library( + name = "unicode_categories-0.1.1", + srcs = [ + "vendor/unicode_categories-0.1.1/src/lib.rs", + "vendor/unicode_categories-0.1.1/src/tables.rs", ], + crate = "unicode_categories", + crate_root = "vendor/unicode_categories-0.1.1/src/lib.rs", + edition = "2015", + visibility = [], +) + +cargo.rust_library( + name = "universal-hash-0.5.1", + srcs = ["vendor/universal-hash-0.5.1/src/lib.rs"], + crate = "universal_hash", + crate_root = "vendor/universal-hash-0.5.1/src/lib.rs", + edition = "2021", visibility = [], deps = [ - ":log-0.4.22", - ":pin-project-lite-0.2.14", - ":tracing-attributes-0.1.28", - ":tracing-core-0.1.33", + ":crypto-common-0.1.6", + ":subtle-2.6.1", ], ) cargo.rust_library( - name = "tracing-attributes-0.1.28", + name = "unsafe-libyaml-0.2.11", srcs = [ - "vendor/tracing-attributes-0.1.28/src/attr.rs", - "vendor/tracing-attributes-0.1.28/src/expand.rs", - "vendor/tracing-attributes-0.1.28/src/lib.rs", + "vendor/unsafe-libyaml-0.2.11/src/api.rs", + "vendor/unsafe-libyaml-0.2.11/src/bin/cstr/mod.rs", + "vendor/unsafe-libyaml-0.2.11/src/bin/run-emitter-test-suite.rs", + "vendor/unsafe-libyaml-0.2.11/src/bin/run-parser-test-suite.rs", + "vendor/unsafe-libyaml-0.2.11/src/dumper.rs", + "vendor/unsafe-libyaml-0.2.11/src/emitter.rs", + "vendor/unsafe-libyaml-0.2.11/src/lib.rs", + "vendor/unsafe-libyaml-0.2.11/src/loader.rs", + "vendor/unsafe-libyaml-0.2.11/src/macros.rs", + "vendor/unsafe-libyaml-0.2.11/src/ops.rs", + "vendor/unsafe-libyaml-0.2.11/src/parser.rs", + "vendor/unsafe-libyaml-0.2.11/src/reader.rs", + "vendor/unsafe-libyaml-0.2.11/src/scanner.rs", + "vendor/unsafe-libyaml-0.2.11/src/success.rs", + "vendor/unsafe-libyaml-0.2.11/src/writer.rs", + "vendor/unsafe-libyaml-0.2.11/src/yaml.rs", ], - crate = "tracing_attributes", - crate_root = "vendor/tracing-attributes-0.1.28/src/lib.rs", + crate = "unsafe_libyaml", + crate_root = "vendor/unsafe-libyaml-0.2.11/src/lib.rs", + edition = "2021", + visibility = [], +) + +cargo.rust_library( + name = "untrusted-0.9.0", + srcs = [ + "vendor/untrusted-0.9.0/src/input.rs", + "vendor/untrusted-0.9.0/src/lib.rs", + "vendor/untrusted-0.9.0/src/no_panic.rs", + "vendor/untrusted-0.9.0/src/reader.rs", + ], + crate = "untrusted", + crate_root = "vendor/untrusted-0.9.0/src/lib.rs", edition = "2018", - proc_macro = True, + visibility = [], +) + +cargo.rust_library( + name = "ureq-2.10.1", + srcs = [ + "vendor/ureq-2.10.1/src/agent.rs", + "vendor/ureq-2.10.1/src/body.rs", + "vendor/ureq-2.10.1/src/chunked/decoder.rs", + "vendor/ureq-2.10.1/src/chunked/mod.rs", + "vendor/ureq-2.10.1/src/cookies.rs", + "vendor/ureq-2.10.1/src/error.rs", + "vendor/ureq-2.10.1/src/header.rs", + "vendor/ureq-2.10.1/src/http_crate.rs", + "vendor/ureq-2.10.1/src/http_interop.rs", + "vendor/ureq-2.10.1/src/lib.rs", + "vendor/ureq-2.10.1/src/middleware.rs", + "vendor/ureq-2.10.1/src/ntls.rs", + "vendor/ureq-2.10.1/src/pool.rs", + "vendor/ureq-2.10.1/src/proxy.rs", + "vendor/ureq-2.10.1/src/request.rs", + "vendor/ureq-2.10.1/src/resolve.rs", + "vendor/ureq-2.10.1/src/response.rs", + "vendor/ureq-2.10.1/src/rtls.rs", + "vendor/ureq-2.10.1/src/stream.rs", + "vendor/ureq-2.10.1/src/test/agent_test.rs", + "vendor/ureq-2.10.1/src/test/body_read.rs", + "vendor/ureq-2.10.1/src/test/body_send.rs", + "vendor/ureq-2.10.1/src/test/mod.rs", + "vendor/ureq-2.10.1/src/test/query_string.rs", + "vendor/ureq-2.10.1/src/test/range.rs", + "vendor/ureq-2.10.1/src/test/redirect.rs", + "vendor/ureq-2.10.1/src/test/simple.rs", + "vendor/ureq-2.10.1/src/test/timeout.rs", + "vendor/ureq-2.10.1/src/testserver.rs", + "vendor/ureq-2.10.1/src/unit.rs", + ], + crate = "ureq", + crate_root = "vendor/ureq-2.10.1/src/lib.rs", + edition = "2018", + env = { + "CARGO_MANIFEST_DIR": "vendor/ureq-2.10.1", + "CARGO_PKG_AUTHORS": "Martin Algesten :Jacob Hoffman-Andrews ", + "CARGO_PKG_DESCRIPTION": "Simple, safe HTTP client", + "CARGO_PKG_NAME": "ureq", + "CARGO_PKG_REPOSITORY": "https://github.com/algesten/ureq", + "CARGO_PKG_VERSION": "2.10.1", + "CARGO_PKG_VERSION_MAJOR": "2", + "CARGO_PKG_VERSION_MINOR": "10", + "CARGO_PKG_VERSION_PATCH": "1", + }, + features = [ + "default", + "gzip", + "json", + "tls", + ], visibility = [], deps = [ - ":proc-macro2-1.0.86", - ":quote-1.0.36", - ":syn-2.0.87", + ":base64-0.22.1", + ":flate2-1.0.35", + ":log-0.4.22", + ":once_cell-1.20.3", + ":rustls-0.23.22", + ":rustls-pki-types-1.11.0", + ":serde-1.0.217", + ":serde_json-1.0.138", + ":url-2.5.3", + ":webpki-roots-0.26.3", ], ) cargo.rust_library( - name = "tracing-core-0.1.33", + name = "url-2.5.3", srcs = [ - "vendor/tracing-core-0.1.33/src/callsite.rs", - "vendor/tracing-core-0.1.33/src/dispatcher.rs", - "vendor/tracing-core-0.1.33/src/event.rs", - "vendor/tracing-core-0.1.33/src/field.rs", - "vendor/tracing-core-0.1.33/src/lazy.rs", - "vendor/tracing-core-0.1.33/src/lib.rs", - "vendor/tracing-core-0.1.33/src/metadata.rs", - "vendor/tracing-core-0.1.33/src/parent.rs", - "vendor/tracing-core-0.1.33/src/span.rs", - "vendor/tracing-core-0.1.33/src/spin/mod.rs", - "vendor/tracing-core-0.1.33/src/spin/mutex.rs", - "vendor/tracing-core-0.1.33/src/spin/once.rs", - "vendor/tracing-core-0.1.33/src/stdlib.rs", - "vendor/tracing-core-0.1.33/src/subscriber.rs", + "vendor/url-2.5.3/src/host.rs", + "vendor/url-2.5.3/src/lib.rs", + "vendor/url-2.5.3/src/origin.rs", + "vendor/url-2.5.3/src/parser.rs", + "vendor/url-2.5.3/src/path_segments.rs", + "vendor/url-2.5.3/src/quirks.rs", + "vendor/url-2.5.3/src/slicing.rs", ], - crate = "tracing_core", - crate_root = "vendor/tracing-core-0.1.33/src/lib.rs", + crate = "url", + crate_root = "vendor/url-2.5.3/src/lib.rs", edition = "2018", features = [ "default", - "once_cell", + "serde", "std", ], visibility = [], - deps = [":once_cell-1.20.3"], + deps = [ + ":form_urlencoded-1.2.1", + ":idna-1.0.3", + ":percent-encoding-2.3.1", + ":serde-1.0.217", + ], ) cargo.rust_library( - name = "try-lock-0.2.5", - srcs = ["vendor/try-lock-0.2.5/src/lib.rs"], - crate = "try_lock", - crate_root = "vendor/try-lock-0.2.5/src/lib.rs", - edition = "2015", + name = "utf16_iter-1.0.5", + srcs = [ + "vendor/utf16_iter-1.0.5/src/indices.rs", + "vendor/utf16_iter-1.0.5/src/lib.rs", + "vendor/utf16_iter-1.0.5/src/report.rs", + ], + crate = "utf16_iter", + crate_root = "vendor/utf16_iter-1.0.5/src/lib.rs", + edition = "2021", visibility = [], ) cargo.rust_library( - name = "typenum-1.17.0", + name = "utf8_iter-1.0.4", srcs = [ - "vendor/typenum-1.17.0/src/array.rs", - "vendor/typenum-1.17.0/src/bit.rs", - "vendor/typenum-1.17.0/src/int.rs", - "vendor/typenum-1.17.0/src/lib.rs", - "vendor/typenum-1.17.0/src/marker_traits.rs", - "vendor/typenum-1.17.0/src/operator_aliases.rs", - "vendor/typenum-1.17.0/src/private.rs", - "vendor/typenum-1.17.0/src/type_operators.rs", - "vendor/typenum-1.17.0/src/uint.rs", + "vendor/utf8_iter-1.0.4/src/indices.rs", + "vendor/utf8_iter-1.0.4/src/lib.rs", + "vendor/utf8_iter-1.0.4/src/report.rs", ], - crate = "typenum", - crate_root = "vendor/typenum-1.17.0/src/lib.rs", - edition = "2018", - env = { - "OUT_DIR": "$(location :typenum-1.17.0-build-script-main-run[out_dir])", - }, - features = ["force_unix_path_separator"], + crate = "utf8_iter", + crate_root = "vendor/utf8_iter-1.0.4/src/lib.rs", + edition = "2021", visibility = [], ) -cargo.rust_binary( - name = "typenum-1.17.0-build-script-main", +cargo.rust_library( + name = "utf8parse-0.2.2", srcs = [ - "vendor/typenum-1.17.0/build/generic_const_mappings.rs", - "vendor/typenum-1.17.0/build/main.rs", - "vendor/typenum-1.17.0/build/op.rs", - "vendor/typenum-1.17.0/build/tests.rs", + "vendor/utf8parse-0.2.2/src/lib.rs", + "vendor/utf8parse-0.2.2/src/types.rs", ], - crate = "build_script_main", - crate_root = "vendor/typenum-1.17.0/build/main.rs", + crate = "utf8parse", + crate_root = "vendor/utf8parse-0.2.2/src/lib.rs", edition = "2018", - features = ["force_unix_path_separator"], + features = ["default"], visibility = [], ) -buildscript_run( - name = "typenum-1.17.0-build-script-main-run", - package_name = "typenum", - buildscript_rule = ":typenum-1.17.0-build-script-main", - features = ["force_unix_path_separator"], - version = "1.17.0", +alias( + name = "uuid", + actual = ":uuid-1.13.1", + visibility = ["PUBLIC"], ) cargo.rust_library( - name = "unicase-2.7.0", - srcs = [ - "vendor/unicase-2.7.0/src/ascii.rs", - "vendor/unicase-2.7.0/src/lib.rs", - "vendor/unicase-2.7.0/src/unicode/map.rs", - "vendor/unicase-2.7.0/src/unicode/mod.rs", + name = "uuid-1.13.1", + srcs = [ + "vendor/uuid-1.13.1/src/builder.rs", + "vendor/uuid-1.13.1/src/error.rs", + "vendor/uuid-1.13.1/src/external.rs", + "vendor/uuid-1.13.1/src/external/arbitrary_support.rs", + "vendor/uuid-1.13.1/src/external/borsh_support.rs", + "vendor/uuid-1.13.1/src/external/serde_support.rs", + "vendor/uuid-1.13.1/src/external/slog_support.rs", + "vendor/uuid-1.13.1/src/fmt.rs", + "vendor/uuid-1.13.1/src/lib.rs", + "vendor/uuid-1.13.1/src/macros.rs", + "vendor/uuid-1.13.1/src/md5.rs", + "vendor/uuid-1.13.1/src/non_nil.rs", + "vendor/uuid-1.13.1/src/parser.rs", + "vendor/uuid-1.13.1/src/rng.rs", + "vendor/uuid-1.13.1/src/sha1.rs", + "vendor/uuid-1.13.1/src/timestamp.rs", + "vendor/uuid-1.13.1/src/v1.rs", + "vendor/uuid-1.13.1/src/v3.rs", + "vendor/uuid-1.13.1/src/v4.rs", + "vendor/uuid-1.13.1/src/v5.rs", + "vendor/uuid-1.13.1/src/v6.rs", + "vendor/uuid-1.13.1/src/v7.rs", + "vendor/uuid-1.13.1/src/v8.rs", + ], + crate = "uuid", + crate_root = "vendor/uuid-1.13.1/src/lib.rs", + edition = "2018", + features = [ + "default", + "rng", + "serde", + "std", + "v4", + "v7", ], - crate = "unicase", - crate_root = "vendor/unicase-2.7.0/src/lib.rs", - edition = "2015", + platform = { + "linux-arm64": dict( + deps = [":getrandom-0.3.1"], + ), + "linux-x86_64": dict( + deps = [":getrandom-0.3.1"], + ), + "macos-arm64": dict( + deps = [":getrandom-0.3.1"], + ), + "macos-x86_64": dict( + deps = [":getrandom-0.3.1"], + ), + "windows-gnu": dict( + deps = [":getrandom-0.3.1"], + ), + "windows-msvc": dict( + deps = [":getrandom-0.3.1"], + ), + }, visibility = [], + deps = [":serde-1.0.217"], ) cargo.rust_library( - name = "unicode-ident-1.0.12", + name = "value-bag-1.10.0", srcs = [ - "vendor/unicode-ident-1.0.12/src/lib.rs", - "vendor/unicode-ident-1.0.12/src/tables.rs", + "vendor/value-bag-1.10.0/src/error.rs", + "vendor/value-bag-1.10.0/src/fill.rs", + "vendor/value-bag-1.10.0/src/impls.rs", + "vendor/value-bag-1.10.0/src/internal/cast/mod.rs", + "vendor/value-bag-1.10.0/src/internal/cast/primitive.rs", + "vendor/value-bag-1.10.0/src/internal/error.rs", + "vendor/value-bag-1.10.0/src/internal/fmt.rs", + "vendor/value-bag-1.10.0/src/internal/mod.rs", + "vendor/value-bag-1.10.0/src/internal/owned.rs", + "vendor/value-bag-1.10.0/src/internal/seq.rs", + "vendor/value-bag-1.10.0/src/internal/serde/mod.rs", + "vendor/value-bag-1.10.0/src/internal/serde/v1.rs", + "vendor/value-bag-1.10.0/src/internal/sval/mod.rs", + "vendor/value-bag-1.10.0/src/internal/sval/v2.rs", + "vendor/value-bag-1.10.0/src/lib.rs", + "vendor/value-bag-1.10.0/src/owned.rs", + "vendor/value-bag-1.10.0/src/test.rs", + "vendor/value-bag-1.10.0/src/visit.rs", ], - crate = "unicode_ident", - crate_root = "vendor/unicode-ident-1.0.12/src/lib.rs", - edition = "2018", + crate = "value_bag", + crate_root = "vendor/value-bag-1.10.0/src/lib.rs", + edition = "2021", + features = ["inline-i128"], visibility = [], ) cargo.rust_library( - name = "unicode-width-0.1.13", + name = "vcpkg-0.2.15", + srcs = ["vendor/vcpkg-0.2.15/src/lib.rs"], + crate = "vcpkg", + crate_root = "vendor/vcpkg-0.2.15/src/lib.rs", + edition = "2015", + visibility = [], +) + +cargo.rust_library( + name = "vecmap-rs-0.2.2", srcs = [ - "vendor/unicode-width-0.1.13/src/lib.rs", - "vendor/unicode-width-0.1.13/src/tables.rs", + "vendor/vecmap-rs-0.2.2/README.md", + "vendor/vecmap-rs-0.2.2/src/lib.rs", + "vendor/vecmap-rs-0.2.2/src/macros.rs", + "vendor/vecmap-rs-0.2.2/src/map.rs", + "vendor/vecmap-rs-0.2.2/src/map/entry.rs", + "vendor/vecmap-rs-0.2.2/src/map/impls.rs", + "vendor/vecmap-rs-0.2.2/src/map/iter.rs", + "vendor/vecmap-rs-0.2.2/src/map/mutable_keys.rs", + "vendor/vecmap-rs-0.2.2/src/map/serde.rs", + "vendor/vecmap-rs-0.2.2/src/set.rs", + "vendor/vecmap-rs-0.2.2/src/set/impls.rs", + "vendor/vecmap-rs-0.2.2/src/set/iter.rs", + "vendor/vecmap-rs-0.2.2/src/set/serde.rs", ], - crate = "unicode_width", - crate_root = "vendor/unicode-width-0.1.13/src/lib.rs", + crate = "vecmap", + crate_root = "vendor/vecmap-rs-0.2.2/src/lib.rs", edition = "2021", - features = ["default"], + features = [ + "default", + "serde", + ], visibility = [], + deps = [":serde-1.0.217"], ) cargo.rust_library( - name = "unsafe-libyaml-0.2.11", + name = "version_check-0.9.5", srcs = [ - "vendor/unsafe-libyaml-0.2.11/src/api.rs", - "vendor/unsafe-libyaml-0.2.11/src/bin/cstr/mod.rs", - "vendor/unsafe-libyaml-0.2.11/src/bin/run-emitter-test-suite.rs", - "vendor/unsafe-libyaml-0.2.11/src/bin/run-parser-test-suite.rs", - "vendor/unsafe-libyaml-0.2.11/src/dumper.rs", - "vendor/unsafe-libyaml-0.2.11/src/emitter.rs", - "vendor/unsafe-libyaml-0.2.11/src/lib.rs", - "vendor/unsafe-libyaml-0.2.11/src/loader.rs", - "vendor/unsafe-libyaml-0.2.11/src/macros.rs", - "vendor/unsafe-libyaml-0.2.11/src/ops.rs", - "vendor/unsafe-libyaml-0.2.11/src/parser.rs", - "vendor/unsafe-libyaml-0.2.11/src/reader.rs", - "vendor/unsafe-libyaml-0.2.11/src/scanner.rs", - "vendor/unsafe-libyaml-0.2.11/src/success.rs", - "vendor/unsafe-libyaml-0.2.11/src/writer.rs", - "vendor/unsafe-libyaml-0.2.11/src/yaml.rs", + "vendor/version_check-0.9.5/src/channel.rs", + "vendor/version_check-0.9.5/src/date.rs", + "vendor/version_check-0.9.5/src/lib.rs", + "vendor/version_check-0.9.5/src/version.rs", ], - crate = "unsafe_libyaml", - crate_root = "vendor/unsafe-libyaml-0.2.11/src/lib.rs", - edition = "2021", + crate = "version_check", + crate_root = "vendor/version_check-0.9.5/src/lib.rs", + edition = "2015", visibility = [], ) cargo.rust_library( - name = "untrusted-0.9.0", + name = "wait-timeout-0.2.0", srcs = [ - "vendor/untrusted-0.9.0/src/input.rs", - "vendor/untrusted-0.9.0/src/lib.rs", - "vendor/untrusted-0.9.0/src/no_panic.rs", - "vendor/untrusted-0.9.0/src/reader.rs", + "vendor/wait-timeout-0.2.0/src/bin/exit.rs", + "vendor/wait-timeout-0.2.0/src/bin/reader.rs", + "vendor/wait-timeout-0.2.0/src/bin/sleep.rs", + "vendor/wait-timeout-0.2.0/src/lib.rs", + "vendor/wait-timeout-0.2.0/src/unix.rs", + "vendor/wait-timeout-0.2.0/src/windows.rs", ], - crate = "untrusted", - crate_root = "vendor/untrusted-0.9.0/src/lib.rs", + crate = "wait_timeout", + crate_root = "vendor/wait-timeout-0.2.0/src/lib.rs", + edition = "2015", + platform = { + "linux-arm64": dict( + deps = [":libc-0.2.169"], + ), + "linux-x86_64": dict( + deps = [":libc-0.2.169"], + ), + "macos-arm64": dict( + deps = [":libc-0.2.169"], + ), + "macos-x86_64": dict( + deps = [":libc-0.2.169"], + ), + }, + visibility = [], +) + +cargo.rust_library( + name = "waker-fn-1.2.0", + srcs = ["vendor/waker-fn-1.2.0/src/lib.rs"], + crate = "waker_fn", + crate_root = "vendor/waker-fn-1.2.0/src/lib.rs", edition = "2018", visibility = [], ) cargo.rust_library( - name = "ureq-2.10.1", + name = "walkdir-2.5.0", srcs = [ - "vendor/ureq-2.10.1/src/agent.rs", - "vendor/ureq-2.10.1/src/body.rs", - "vendor/ureq-2.10.1/src/chunked/decoder.rs", - "vendor/ureq-2.10.1/src/chunked/mod.rs", - "vendor/ureq-2.10.1/src/cookies.rs", - "vendor/ureq-2.10.1/src/error.rs", - "vendor/ureq-2.10.1/src/header.rs", - "vendor/ureq-2.10.1/src/http_crate.rs", - "vendor/ureq-2.10.1/src/http_interop.rs", - "vendor/ureq-2.10.1/src/lib.rs", - "vendor/ureq-2.10.1/src/middleware.rs", - "vendor/ureq-2.10.1/src/ntls.rs", - "vendor/ureq-2.10.1/src/pool.rs", - "vendor/ureq-2.10.1/src/proxy.rs", - "vendor/ureq-2.10.1/src/request.rs", - "vendor/ureq-2.10.1/src/resolve.rs", - "vendor/ureq-2.10.1/src/response.rs", - "vendor/ureq-2.10.1/src/rtls.rs", - "vendor/ureq-2.10.1/src/stream.rs", - "vendor/ureq-2.10.1/src/test/agent_test.rs", - "vendor/ureq-2.10.1/src/test/body_read.rs", - "vendor/ureq-2.10.1/src/test/body_send.rs", - "vendor/ureq-2.10.1/src/test/mod.rs", - "vendor/ureq-2.10.1/src/test/query_string.rs", - "vendor/ureq-2.10.1/src/test/range.rs", - "vendor/ureq-2.10.1/src/test/redirect.rs", - "vendor/ureq-2.10.1/src/test/simple.rs", - "vendor/ureq-2.10.1/src/test/timeout.rs", - "vendor/ureq-2.10.1/src/testserver.rs", - "vendor/ureq-2.10.1/src/unit.rs", + "vendor/walkdir-2.5.0/src/dent.rs", + "vendor/walkdir-2.5.0/src/error.rs", + "vendor/walkdir-2.5.0/src/lib.rs", + "vendor/walkdir-2.5.0/src/tests/mod.rs", + "vendor/walkdir-2.5.0/src/tests/recursive.rs", + "vendor/walkdir-2.5.0/src/tests/util.rs", + "vendor/walkdir-2.5.0/src/util.rs", ], - crate = "ureq", - crate_root = "vendor/ureq-2.10.1/src/lib.rs", + crate = "walkdir", + crate_root = "vendor/walkdir-2.5.0/src/lib.rs", edition = "2018", - env = { - "CARGO_MANIFEST_DIR": "vendor/ureq-2.10.1", - "CARGO_PKG_AUTHORS": "Martin Algesten :Jacob Hoffman-Andrews ", - "CARGO_PKG_DESCRIPTION": "Simple, safe HTTP client", - "CARGO_PKG_NAME": "ureq", - "CARGO_PKG_REPOSITORY": "https://github.com/algesten/ureq", - "CARGO_PKG_VERSION": "2.10.1", - "CARGO_PKG_VERSION_MAJOR": "2", - "CARGO_PKG_VERSION_MINOR": "10", - "CARGO_PKG_VERSION_PATCH": "1", + platform = { + "windows-gnu": dict( + deps = [":winapi-util-0.1.9"], + ), + "windows-msvc": dict( + deps = [":winapi-util-0.1.9"], + ), }, - features = [ - "default", - "gzip", - "json", - "tls", - ], visibility = [], - deps = [ - ":base64-0.22.1", - ":flate2-1.0.35", - ":log-0.4.22", - ":once_cell-1.20.3", - ":rustls-0.23.22", - ":rustls-pki-types-1.11.0", - ":serde-1.0.217", - ":serde_json-1.0.138", - ":url-2.5.3", - ":webpki-roots-0.26.3", - ], + deps = [":same-file-1.0.6"], ) cargo.rust_library( - name = "url-2.5.3", - srcs = [ - "vendor/url-2.5.3/src/host.rs", - "vendor/url-2.5.3/src/lib.rs", - "vendor/url-2.5.3/src/origin.rs", - "vendor/url-2.5.3/src/parser.rs", - "vendor/url-2.5.3/src/path_segments.rs", - "vendor/url-2.5.3/src/quirks.rs", - "vendor/url-2.5.3/src/slicing.rs", - ], - crate = "url", - crate_root = "vendor/url-2.5.3/src/lib.rs", + name = "want-0.3.1", + srcs = ["vendor/want-0.3.1/src/lib.rs"], + crate = "want", + crate_root = "vendor/want-0.3.1/src/lib.rs", edition = "2018", - features = [ - "default", - "serde", - "std", - ], visibility = [], - deps = [ - ":form_urlencoded-1.2.1", - ":idna-1.0.3", - ":percent-encoding-2.3.1", - ":serde-1.0.217", - ], + deps = [":try-lock-0.2.5"], ) cargo.rust_library( - name = "utf16_iter-1.0.5", - srcs = [ - "vendor/utf16_iter-1.0.5/src/indices.rs", - "vendor/utf16_iter-1.0.5/src/lib.rs", - "vendor/utf16_iter-1.0.5/src/report.rs", - ], - crate = "utf16_iter", - crate_root = "vendor/utf16_iter-1.0.5/src/lib.rs", - edition = "2021", + name = "webpki-roots-0.26.3", + srcs = ["vendor/webpki-roots-0.26.3/src/lib.rs"], + crate = "webpki_roots", + crate_root = "vendor/webpki-roots-0.26.3/src/lib.rs", + edition = "2018", + named_deps = { + "pki_types": ":rustls-pki-types-1.11.0", + }, visibility = [], ) cargo.rust_library( - name = "utf8_iter-1.0.4", + name = "which-4.4.2", srcs = [ - "vendor/utf8_iter-1.0.4/src/indices.rs", - "vendor/utf8_iter-1.0.4/src/lib.rs", - "vendor/utf8_iter-1.0.4/src/report.rs", + "vendor/which-4.4.2/src/checker.rs", + "vendor/which-4.4.2/src/error.rs", + "vendor/which-4.4.2/src/finder.rs", + "vendor/which-4.4.2/src/helper.rs", + "vendor/which-4.4.2/src/lib.rs", ], - crate = "utf8_iter", - crate_root = "vendor/utf8_iter-1.0.4/src/lib.rs", + crate = "which", + crate_root = "vendor/which-4.4.2/src/lib.rs", edition = "2021", + platform = { + "linux-arm64": dict( + deps = [":home-0.5.9"], + ), + "linux-x86_64": dict( + deps = [":home-0.5.9"], + ), + "macos-arm64": dict( + deps = [":home-0.5.9"], + ), + "macos-x86_64": dict( + deps = [":home-0.5.9"], + ), + "windows-gnu": dict( + deps = [ + ":home-0.5.9", + ":once_cell-1.20.3", + ], + ), + "windows-msvc": dict( + deps = [ + ":home-0.5.9", + ":once_cell-1.20.3", + ], + ), + }, visibility = [], + deps = [ + ":either-1.13.0", + ":rustix-0.38.41", + ], ) cargo.rust_library( - name = "utf8parse-0.2.2", + name = "whoami-1.5.1", srcs = [ - "vendor/utf8parse-0.2.2/src/lib.rs", - "vendor/utf8parse-0.2.2/src/types.rs", + "vendor/whoami-1.5.1/src/api.rs", + "vendor/whoami-1.5.1/src/arch.rs", + "vendor/whoami-1.5.1/src/conversions.rs", + "vendor/whoami-1.5.1/src/desktop_env.rs", + "vendor/whoami-1.5.1/src/fallible.rs", + "vendor/whoami-1.5.1/src/language.rs", + "vendor/whoami-1.5.1/src/lib.rs", + "vendor/whoami-1.5.1/src/os.rs", + "vendor/whoami-1.5.1/src/os/daku.rs", + "vendor/whoami-1.5.1/src/os/redox.rs", + "vendor/whoami-1.5.1/src/os/target.rs", + "vendor/whoami-1.5.1/src/os/unix.rs", + "vendor/whoami-1.5.1/src/os/wasi.rs", + "vendor/whoami-1.5.1/src/os/web.rs", + "vendor/whoami-1.5.1/src/os/windows.rs", + "vendor/whoami-1.5.1/src/platform.rs", + "vendor/whoami-1.5.1/src/result.rs", ], - crate = "utf8parse", - crate_root = "vendor/utf8parse-0.2.2/src/lib.rs", + crate = "whoami", + crate_root = "vendor/whoami-1.5.1/src/lib.rs", edition = "2018", - features = ["default"], visibility = [], ) cargo.rust_library( - name = "value-bag-1.10.0", + name = "winapi-0.3.9", srcs = [ - "vendor/value-bag-1.10.0/src/error.rs", - "vendor/value-bag-1.10.0/src/fill.rs", - "vendor/value-bag-1.10.0/src/impls.rs", - "vendor/value-bag-1.10.0/src/internal/cast/mod.rs", - "vendor/value-bag-1.10.0/src/internal/cast/primitive.rs", - "vendor/value-bag-1.10.0/src/internal/error.rs", - "vendor/value-bag-1.10.0/src/internal/fmt.rs", - "vendor/value-bag-1.10.0/src/internal/mod.rs", - "vendor/value-bag-1.10.0/src/internal/owned.rs", - "vendor/value-bag-1.10.0/src/internal/seq.rs", - "vendor/value-bag-1.10.0/src/internal/serde/mod.rs", - "vendor/value-bag-1.10.0/src/internal/serde/v1.rs", - "vendor/value-bag-1.10.0/src/internal/sval/mod.rs", - "vendor/value-bag-1.10.0/src/internal/sval/v2.rs", - "vendor/value-bag-1.10.0/src/lib.rs", - "vendor/value-bag-1.10.0/src/owned.rs", - "vendor/value-bag-1.10.0/src/test.rs", - "vendor/value-bag-1.10.0/src/visit.rs", + "vendor/winapi-0.3.9/src/km/d3dkmthk.rs", + "vendor/winapi-0.3.9/src/km/mod.rs", + "vendor/winapi-0.3.9/src/lib.rs", + "vendor/winapi-0.3.9/src/macros.rs", + "vendor/winapi-0.3.9/src/shared/basetsd.rs", + "vendor/winapi-0.3.9/src/shared/bcrypt.rs", + "vendor/winapi-0.3.9/src/shared/bthdef.rs", + "vendor/winapi-0.3.9/src/shared/bthioctl.rs", + "vendor/winapi-0.3.9/src/shared/bthsdpdef.rs", + "vendor/winapi-0.3.9/src/shared/bugcodes.rs", + "vendor/winapi-0.3.9/src/shared/cderr.rs", + "vendor/winapi-0.3.9/src/shared/cfg.rs", + "vendor/winapi-0.3.9/src/shared/d3d9.rs", + "vendor/winapi-0.3.9/src/shared/d3d9caps.rs", + "vendor/winapi-0.3.9/src/shared/d3d9types.rs", + "vendor/winapi-0.3.9/src/shared/d3dkmdt.rs", + "vendor/winapi-0.3.9/src/shared/d3dukmdt.rs", + "vendor/winapi-0.3.9/src/shared/dcomptypes.rs", + "vendor/winapi-0.3.9/src/shared/devguid.rs", + "vendor/winapi-0.3.9/src/shared/devpkey.rs", + "vendor/winapi-0.3.9/src/shared/devpropdef.rs", + "vendor/winapi-0.3.9/src/shared/dinputd.rs", + "vendor/winapi-0.3.9/src/shared/dxgi.rs", + "vendor/winapi-0.3.9/src/shared/dxgi1_2.rs", + "vendor/winapi-0.3.9/src/shared/dxgi1_3.rs", + "vendor/winapi-0.3.9/src/shared/dxgi1_4.rs", + "vendor/winapi-0.3.9/src/shared/dxgi1_5.rs", + "vendor/winapi-0.3.9/src/shared/dxgi1_6.rs", + "vendor/winapi-0.3.9/src/shared/dxgiformat.rs", + "vendor/winapi-0.3.9/src/shared/dxgitype.rs", + "vendor/winapi-0.3.9/src/shared/evntprov.rs", + "vendor/winapi-0.3.9/src/shared/evntrace.rs", + "vendor/winapi-0.3.9/src/shared/guiddef.rs", + "vendor/winapi-0.3.9/src/shared/hidclass.rs", + "vendor/winapi-0.3.9/src/shared/hidpi.rs", + "vendor/winapi-0.3.9/src/shared/hidsdi.rs", + "vendor/winapi-0.3.9/src/shared/hidusage.rs", + "vendor/winapi-0.3.9/src/shared/ifdef.rs", + "vendor/winapi-0.3.9/src/shared/ifmib.rs", + "vendor/winapi-0.3.9/src/shared/in6addr.rs", + "vendor/winapi-0.3.9/src/shared/inaddr.rs", + "vendor/winapi-0.3.9/src/shared/intsafe.rs", + "vendor/winapi-0.3.9/src/shared/ipifcons.rs", + "vendor/winapi-0.3.9/src/shared/ipmib.rs", + "vendor/winapi-0.3.9/src/shared/iprtrmib.rs", + "vendor/winapi-0.3.9/src/shared/ks.rs", + "vendor/winapi-0.3.9/src/shared/ksmedia.rs", + "vendor/winapi-0.3.9/src/shared/ktmtypes.rs", + "vendor/winapi-0.3.9/src/shared/lmcons.rs", + "vendor/winapi-0.3.9/src/shared/minwindef.rs", + "vendor/winapi-0.3.9/src/shared/mmreg.rs", + "vendor/winapi-0.3.9/src/shared/mod.rs", + "vendor/winapi-0.3.9/src/shared/mprapidef.rs", + "vendor/winapi-0.3.9/src/shared/mstcpip.rs", + "vendor/winapi-0.3.9/src/shared/mswsockdef.rs", + "vendor/winapi-0.3.9/src/shared/netioapi.rs", + "vendor/winapi-0.3.9/src/shared/nldef.rs", + "vendor/winapi-0.3.9/src/shared/ntddndis.rs", + "vendor/winapi-0.3.9/src/shared/ntddscsi.rs", + "vendor/winapi-0.3.9/src/shared/ntddser.rs", + "vendor/winapi-0.3.9/src/shared/ntdef.rs", + "vendor/winapi-0.3.9/src/shared/ntstatus.rs", + "vendor/winapi-0.3.9/src/shared/qos.rs", + "vendor/winapi-0.3.9/src/shared/rpc.rs", + "vendor/winapi-0.3.9/src/shared/rpcdce.rs", + "vendor/winapi-0.3.9/src/shared/rpcndr.rs", + "vendor/winapi-0.3.9/src/shared/sddl.rs", + "vendor/winapi-0.3.9/src/shared/sspi.rs", + "vendor/winapi-0.3.9/src/shared/stralign.rs", + "vendor/winapi-0.3.9/src/shared/tcpestats.rs", + "vendor/winapi-0.3.9/src/shared/tcpmib.rs", + "vendor/winapi-0.3.9/src/shared/transportsettingcommon.rs", + "vendor/winapi-0.3.9/src/shared/tvout.rs", + "vendor/winapi-0.3.9/src/shared/udpmib.rs", + "vendor/winapi-0.3.9/src/shared/usb.rs", + "vendor/winapi-0.3.9/src/shared/usbioctl.rs", + "vendor/winapi-0.3.9/src/shared/usbiodef.rs", + "vendor/winapi-0.3.9/src/shared/usbscan.rs", + "vendor/winapi-0.3.9/src/shared/usbspec.rs", + "vendor/winapi-0.3.9/src/shared/windef.rs", + "vendor/winapi-0.3.9/src/shared/windot11.rs", + "vendor/winapi-0.3.9/src/shared/windowsx.rs", + "vendor/winapi-0.3.9/src/shared/winerror.rs", + "vendor/winapi-0.3.9/src/shared/winusbio.rs", + "vendor/winapi-0.3.9/src/shared/wlantypes.rs", + "vendor/winapi-0.3.9/src/shared/wmistr.rs", + "vendor/winapi-0.3.9/src/shared/wnnc.rs", + "vendor/winapi-0.3.9/src/shared/ws2def.rs", + "vendor/winapi-0.3.9/src/shared/ws2ipdef.rs", + "vendor/winapi-0.3.9/src/shared/wtypes.rs", + "vendor/winapi-0.3.9/src/shared/wtypesbase.rs", + "vendor/winapi-0.3.9/src/ucrt/corecrt.rs", + "vendor/winapi-0.3.9/src/ucrt/mod.rs", + "vendor/winapi-0.3.9/src/um/accctrl.rs", + "vendor/winapi-0.3.9/src/um/aclapi.rs", + "vendor/winapi-0.3.9/src/um/adhoc.rs", + "vendor/winapi-0.3.9/src/um/appmgmt.rs", + "vendor/winapi-0.3.9/src/um/audioclient.rs", + "vendor/winapi-0.3.9/src/um/audiosessiontypes.rs", + "vendor/winapi-0.3.9/src/um/avrt.rs", + "vendor/winapi-0.3.9/src/um/bits.rs", + "vendor/winapi-0.3.9/src/um/bits10_1.rs", + "vendor/winapi-0.3.9/src/um/bits1_5.rs", + "vendor/winapi-0.3.9/src/um/bits2_0.rs", + "vendor/winapi-0.3.9/src/um/bits2_5.rs", + "vendor/winapi-0.3.9/src/um/bits3_0.rs", + "vendor/winapi-0.3.9/src/um/bits4_0.rs", + "vendor/winapi-0.3.9/src/um/bits5_0.rs", + "vendor/winapi-0.3.9/src/um/bitscfg.rs", + "vendor/winapi-0.3.9/src/um/bitsmsg.rs", + "vendor/winapi-0.3.9/src/um/bluetoothapis.rs", + "vendor/winapi-0.3.9/src/um/bluetoothleapis.rs", + "vendor/winapi-0.3.9/src/um/bthledef.rs", + "vendor/winapi-0.3.9/src/um/cfgmgr32.rs", + "vendor/winapi-0.3.9/src/um/cguid.rs", + "vendor/winapi-0.3.9/src/um/combaseapi.rs", + "vendor/winapi-0.3.9/src/um/coml2api.rs", + "vendor/winapi-0.3.9/src/um/commapi.rs", + "vendor/winapi-0.3.9/src/um/commctrl.rs", + "vendor/winapi-0.3.9/src/um/commdlg.rs", + "vendor/winapi-0.3.9/src/um/commoncontrols.rs", + "vendor/winapi-0.3.9/src/um/consoleapi.rs", + "vendor/winapi-0.3.9/src/um/corsym.rs", + "vendor/winapi-0.3.9/src/um/d2d1.rs", + "vendor/winapi-0.3.9/src/um/d2d1_1.rs", + "vendor/winapi-0.3.9/src/um/d2d1_2.rs", + "vendor/winapi-0.3.9/src/um/d2d1_3.rs", + "vendor/winapi-0.3.9/src/um/d2d1effectauthor.rs", + "vendor/winapi-0.3.9/src/um/d2d1effects.rs", + "vendor/winapi-0.3.9/src/um/d2d1effects_1.rs", + "vendor/winapi-0.3.9/src/um/d2d1effects_2.rs", + "vendor/winapi-0.3.9/src/um/d2d1svg.rs", + "vendor/winapi-0.3.9/src/um/d2dbasetypes.rs", + "vendor/winapi-0.3.9/src/um/d3d.rs", + "vendor/winapi-0.3.9/src/um/d3d10.rs", + "vendor/winapi-0.3.9/src/um/d3d10_1.rs", + "vendor/winapi-0.3.9/src/um/d3d10_1shader.rs", + "vendor/winapi-0.3.9/src/um/d3d10effect.rs", + "vendor/winapi-0.3.9/src/um/d3d10misc.rs", + "vendor/winapi-0.3.9/src/um/d3d10sdklayers.rs", + "vendor/winapi-0.3.9/src/um/d3d10shader.rs", + "vendor/winapi-0.3.9/src/um/d3d11.rs", + "vendor/winapi-0.3.9/src/um/d3d11_1.rs", + "vendor/winapi-0.3.9/src/um/d3d11_2.rs", + "vendor/winapi-0.3.9/src/um/d3d11_3.rs", + "vendor/winapi-0.3.9/src/um/d3d11_4.rs", + "vendor/winapi-0.3.9/src/um/d3d11on12.rs", + "vendor/winapi-0.3.9/src/um/d3d11sdklayers.rs", + "vendor/winapi-0.3.9/src/um/d3d11shader.rs", + "vendor/winapi-0.3.9/src/um/d3d11tokenizedprogramformat.rs", + "vendor/winapi-0.3.9/src/um/d3d12.rs", + "vendor/winapi-0.3.9/src/um/d3d12sdklayers.rs", + "vendor/winapi-0.3.9/src/um/d3d12shader.rs", + "vendor/winapi-0.3.9/src/um/d3dcommon.rs", + "vendor/winapi-0.3.9/src/um/d3dcompiler.rs", + "vendor/winapi-0.3.9/src/um/d3dcsx.rs", + "vendor/winapi-0.3.9/src/um/d3dx10core.rs", + "vendor/winapi-0.3.9/src/um/d3dx10math.rs", + "vendor/winapi-0.3.9/src/um/d3dx10mesh.rs", + "vendor/winapi-0.3.9/src/um/datetimeapi.rs", + "vendor/winapi-0.3.9/src/um/davclnt.rs", + "vendor/winapi-0.3.9/src/um/dbghelp.rs", + "vendor/winapi-0.3.9/src/um/dbt.rs", + "vendor/winapi-0.3.9/src/um/dcommon.rs", + "vendor/winapi-0.3.9/src/um/dcomp.rs", + "vendor/winapi-0.3.9/src/um/dcompanimation.rs", + "vendor/winapi-0.3.9/src/um/dde.rs", + "vendor/winapi-0.3.9/src/um/ddraw.rs", + "vendor/winapi-0.3.9/src/um/ddrawi.rs", + "vendor/winapi-0.3.9/src/um/ddrawint.rs", + "vendor/winapi-0.3.9/src/um/debugapi.rs", + "vendor/winapi-0.3.9/src/um/devicetopology.rs", + "vendor/winapi-0.3.9/src/um/dinput.rs", + "vendor/winapi-0.3.9/src/um/dispex.rs", + "vendor/winapi-0.3.9/src/um/dmksctl.rs", + "vendor/winapi-0.3.9/src/um/dmusicc.rs", + "vendor/winapi-0.3.9/src/um/docobj.rs", + "vendor/winapi-0.3.9/src/um/documenttarget.rs", + "vendor/winapi-0.3.9/src/um/dot1x.rs", + "vendor/winapi-0.3.9/src/um/dpa_dsa.rs", + "vendor/winapi-0.3.9/src/um/dpapi.rs", + "vendor/winapi-0.3.9/src/um/dsgetdc.rs", + "vendor/winapi-0.3.9/src/um/dsound.rs", + "vendor/winapi-0.3.9/src/um/dsrole.rs", + "vendor/winapi-0.3.9/src/um/dvp.rs", + "vendor/winapi-0.3.9/src/um/dwmapi.rs", + "vendor/winapi-0.3.9/src/um/dwrite.rs", + "vendor/winapi-0.3.9/src/um/dwrite_1.rs", + "vendor/winapi-0.3.9/src/um/dwrite_2.rs", + "vendor/winapi-0.3.9/src/um/dwrite_3.rs", + "vendor/winapi-0.3.9/src/um/dxdiag.rs", + "vendor/winapi-0.3.9/src/um/dxfile.rs", + "vendor/winapi-0.3.9/src/um/dxgidebug.rs", + "vendor/winapi-0.3.9/src/um/dxva2api.rs", + "vendor/winapi-0.3.9/src/um/dxvahd.rs", + "vendor/winapi-0.3.9/src/um/eaptypes.rs", + "vendor/winapi-0.3.9/src/um/enclaveapi.rs", + "vendor/winapi-0.3.9/src/um/endpointvolume.rs", + "vendor/winapi-0.3.9/src/um/errhandlingapi.rs", + "vendor/winapi-0.3.9/src/um/evntcons.rs", + "vendor/winapi-0.3.9/src/um/exdisp.rs", + "vendor/winapi-0.3.9/src/um/fibersapi.rs", + "vendor/winapi-0.3.9/src/um/fileapi.rs", + "vendor/winapi-0.3.9/src/um/functiondiscoverykeys_devpkey.rs", + "vendor/winapi-0.3.9/src/um/gl/gl.rs", + "vendor/winapi-0.3.9/src/um/gl/mod.rs", + "vendor/winapi-0.3.9/src/um/handleapi.rs", + "vendor/winapi-0.3.9/src/um/heapapi.rs", + "vendor/winapi-0.3.9/src/um/highlevelmonitorconfigurationapi.rs", + "vendor/winapi-0.3.9/src/um/http.rs", + "vendor/winapi-0.3.9/src/um/imm.rs", + "vendor/winapi-0.3.9/src/um/interlockedapi.rs", + "vendor/winapi-0.3.9/src/um/ioapiset.rs", + "vendor/winapi-0.3.9/src/um/ipexport.rs", + "vendor/winapi-0.3.9/src/um/iphlpapi.rs", + "vendor/winapi-0.3.9/src/um/iptypes.rs", + "vendor/winapi-0.3.9/src/um/jobapi.rs", + "vendor/winapi-0.3.9/src/um/jobapi2.rs", + "vendor/winapi-0.3.9/src/um/knownfolders.rs", + "vendor/winapi-0.3.9/src/um/ktmw32.rs", + "vendor/winapi-0.3.9/src/um/l2cmn.rs", + "vendor/winapi-0.3.9/src/um/libloaderapi.rs", + "vendor/winapi-0.3.9/src/um/lmaccess.rs", + "vendor/winapi-0.3.9/src/um/lmalert.rs", + "vendor/winapi-0.3.9/src/um/lmapibuf.rs", + "vendor/winapi-0.3.9/src/um/lmat.rs", + "vendor/winapi-0.3.9/src/um/lmdfs.rs", + "vendor/winapi-0.3.9/src/um/lmerrlog.rs", + "vendor/winapi-0.3.9/src/um/lmjoin.rs", + "vendor/winapi-0.3.9/src/um/lmmsg.rs", + "vendor/winapi-0.3.9/src/um/lmremutl.rs", + "vendor/winapi-0.3.9/src/um/lmrepl.rs", + "vendor/winapi-0.3.9/src/um/lmserver.rs", + "vendor/winapi-0.3.9/src/um/lmshare.rs", + "vendor/winapi-0.3.9/src/um/lmstats.rs", + "vendor/winapi-0.3.9/src/um/lmsvc.rs", + "vendor/winapi-0.3.9/src/um/lmuse.rs", + "vendor/winapi-0.3.9/src/um/lmwksta.rs", + "vendor/winapi-0.3.9/src/um/lowlevelmonitorconfigurationapi.rs", + "vendor/winapi-0.3.9/src/um/lsalookup.rs", + "vendor/winapi-0.3.9/src/um/memoryapi.rs", + "vendor/winapi-0.3.9/src/um/minschannel.rs", + "vendor/winapi-0.3.9/src/um/minwinbase.rs", + "vendor/winapi-0.3.9/src/um/mmdeviceapi.rs", + "vendor/winapi-0.3.9/src/um/mmeapi.rs", + "vendor/winapi-0.3.9/src/um/mmsystem.rs", + "vendor/winapi-0.3.9/src/um/mod.rs", + "vendor/winapi-0.3.9/src/um/msaatext.rs", + "vendor/winapi-0.3.9/src/um/mscat.rs", + "vendor/winapi-0.3.9/src/um/mschapp.rs", + "vendor/winapi-0.3.9/src/um/mssip.rs", + "vendor/winapi-0.3.9/src/um/mswsock.rs", + "vendor/winapi-0.3.9/src/um/namedpipeapi.rs", + "vendor/winapi-0.3.9/src/um/namespaceapi.rs", + "vendor/winapi-0.3.9/src/um/nb30.rs", + "vendor/winapi-0.3.9/src/um/ncrypt.rs", + "vendor/winapi-0.3.9/src/um/ntlsa.rs", + "vendor/winapi-0.3.9/src/um/ntsecapi.rs", + "vendor/winapi-0.3.9/src/um/oaidl.rs", + "vendor/winapi-0.3.9/src/um/objbase.rs", + "vendor/winapi-0.3.9/src/um/objidl.rs", + "vendor/winapi-0.3.9/src/um/objidlbase.rs", + "vendor/winapi-0.3.9/src/um/ocidl.rs", + "vendor/winapi-0.3.9/src/um/ole2.rs", + "vendor/winapi-0.3.9/src/um/oleauto.rs", + "vendor/winapi-0.3.9/src/um/olectl.rs", + "vendor/winapi-0.3.9/src/um/oleidl.rs", + "vendor/winapi-0.3.9/src/um/opmapi.rs", + "vendor/winapi-0.3.9/src/um/pdh.rs", + "vendor/winapi-0.3.9/src/um/perflib.rs", + "vendor/winapi-0.3.9/src/um/physicalmonitorenumerationapi.rs", + "vendor/winapi-0.3.9/src/um/playsoundapi.rs", + "vendor/winapi-0.3.9/src/um/portabledevice.rs", + "vendor/winapi-0.3.9/src/um/portabledeviceapi.rs", + "vendor/winapi-0.3.9/src/um/portabledevicetypes.rs", + "vendor/winapi-0.3.9/src/um/powerbase.rs", + "vendor/winapi-0.3.9/src/um/powersetting.rs", + "vendor/winapi-0.3.9/src/um/powrprof.rs", + "vendor/winapi-0.3.9/src/um/processenv.rs", + "vendor/winapi-0.3.9/src/um/processsnapshot.rs", + "vendor/winapi-0.3.9/src/um/processthreadsapi.rs", + "vendor/winapi-0.3.9/src/um/processtopologyapi.rs", + "vendor/winapi-0.3.9/src/um/profileapi.rs", + "vendor/winapi-0.3.9/src/um/propidl.rs", + "vendor/winapi-0.3.9/src/um/propkey.rs", + "vendor/winapi-0.3.9/src/um/propkeydef.rs", + "vendor/winapi-0.3.9/src/um/propsys.rs", + "vendor/winapi-0.3.9/src/um/prsht.rs", + "vendor/winapi-0.3.9/src/um/psapi.rs", + "vendor/winapi-0.3.9/src/um/realtimeapiset.rs", + "vendor/winapi-0.3.9/src/um/reason.rs", + "vendor/winapi-0.3.9/src/um/restartmanager.rs", + "vendor/winapi-0.3.9/src/um/restrictederrorinfo.rs", + "vendor/winapi-0.3.9/src/um/rmxfguid.rs", + "vendor/winapi-0.3.9/src/um/rtinfo.rs", + "vendor/winapi-0.3.9/src/um/sapi.rs", + "vendor/winapi-0.3.9/src/um/sapi51.rs", + "vendor/winapi-0.3.9/src/um/sapi53.rs", + "vendor/winapi-0.3.9/src/um/sapiddk.rs", + "vendor/winapi-0.3.9/src/um/sapiddk51.rs", + "vendor/winapi-0.3.9/src/um/schannel.rs", + "vendor/winapi-0.3.9/src/um/securityappcontainer.rs", + "vendor/winapi-0.3.9/src/um/securitybaseapi.rs", + "vendor/winapi-0.3.9/src/um/servprov.rs", + "vendor/winapi-0.3.9/src/um/setupapi.rs", + "vendor/winapi-0.3.9/src/um/shellapi.rs", + "vendor/winapi-0.3.9/src/um/shellscalingapi.rs", + "vendor/winapi-0.3.9/src/um/shlobj.rs", + "vendor/winapi-0.3.9/src/um/shobjidl.rs", + "vendor/winapi-0.3.9/src/um/shobjidl_core.rs", + "vendor/winapi-0.3.9/src/um/shtypes.rs", + "vendor/winapi-0.3.9/src/um/softpub.rs", + "vendor/winapi-0.3.9/src/um/spapidef.rs", + "vendor/winapi-0.3.9/src/um/spellcheck.rs", + "vendor/winapi-0.3.9/src/um/sporder.rs", + "vendor/winapi-0.3.9/src/um/sql.rs", + "vendor/winapi-0.3.9/src/um/sqlext.rs", + "vendor/winapi-0.3.9/src/um/sqltypes.rs", + "vendor/winapi-0.3.9/src/um/sqlucode.rs", + "vendor/winapi-0.3.9/src/um/sspi.rs", + "vendor/winapi-0.3.9/src/um/stringapiset.rs", + "vendor/winapi-0.3.9/src/um/strmif.rs", + "vendor/winapi-0.3.9/src/um/subauth.rs", + "vendor/winapi-0.3.9/src/um/synchapi.rs", + "vendor/winapi-0.3.9/src/um/sysinfoapi.rs", + "vendor/winapi-0.3.9/src/um/systemtopologyapi.rs", + "vendor/winapi-0.3.9/src/um/taskschd.rs", + "vendor/winapi-0.3.9/src/um/textstor.rs", + "vendor/winapi-0.3.9/src/um/threadpoolapiset.rs", + "vendor/winapi-0.3.9/src/um/threadpoollegacyapiset.rs", + "vendor/winapi-0.3.9/src/um/timeapi.rs", + "vendor/winapi-0.3.9/src/um/timezoneapi.rs", + "vendor/winapi-0.3.9/src/um/tlhelp32.rs", + "vendor/winapi-0.3.9/src/um/unknwnbase.rs", + "vendor/winapi-0.3.9/src/um/urlhist.rs", + "vendor/winapi-0.3.9/src/um/urlmon.rs", + "vendor/winapi-0.3.9/src/um/userenv.rs", + "vendor/winapi-0.3.9/src/um/usp10.rs", + "vendor/winapi-0.3.9/src/um/utilapiset.rs", + "vendor/winapi-0.3.9/src/um/uxtheme.rs", + "vendor/winapi-0.3.9/src/um/vsbackup.rs", + "vendor/winapi-0.3.9/src/um/vss.rs", + "vendor/winapi-0.3.9/src/um/vsserror.rs", + "vendor/winapi-0.3.9/src/um/vswriter.rs", + "vendor/winapi-0.3.9/src/um/wbemads.rs", + "vendor/winapi-0.3.9/src/um/wbemcli.rs", + "vendor/winapi-0.3.9/src/um/wbemdisp.rs", + "vendor/winapi-0.3.9/src/um/wbemprov.rs", + "vendor/winapi-0.3.9/src/um/wbemtran.rs", + "vendor/winapi-0.3.9/src/um/wct.rs", + "vendor/winapi-0.3.9/src/um/werapi.rs", + "vendor/winapi-0.3.9/src/um/winbase.rs", + "vendor/winapi-0.3.9/src/um/wincodec.rs", + "vendor/winapi-0.3.9/src/um/wincodecsdk.rs", + "vendor/winapi-0.3.9/src/um/wincon.rs", + "vendor/winapi-0.3.9/src/um/wincontypes.rs", + "vendor/winapi-0.3.9/src/um/wincred.rs", + "vendor/winapi-0.3.9/src/um/wincrypt.rs", + "vendor/winapi-0.3.9/src/um/windowsceip.rs", + "vendor/winapi-0.3.9/src/um/winefs.rs", + "vendor/winapi-0.3.9/src/um/winevt.rs", + "vendor/winapi-0.3.9/src/um/wingdi.rs", + "vendor/winapi-0.3.9/src/um/winhttp.rs", + "vendor/winapi-0.3.9/src/um/wininet.rs", + "vendor/winapi-0.3.9/src/um/winineti.rs", + "vendor/winapi-0.3.9/src/um/winioctl.rs", + "vendor/winapi-0.3.9/src/um/winnetwk.rs", + "vendor/winapi-0.3.9/src/um/winnls.rs", + "vendor/winapi-0.3.9/src/um/winnt.rs", + "vendor/winapi-0.3.9/src/um/winreg.rs", + "vendor/winapi-0.3.9/src/um/winsafer.rs", + "vendor/winapi-0.3.9/src/um/winscard.rs", + "vendor/winapi-0.3.9/src/um/winsmcrd.rs", + "vendor/winapi-0.3.9/src/um/winsock2.rs", + "vendor/winapi-0.3.9/src/um/winspool.rs", + "vendor/winapi-0.3.9/src/um/winsvc.rs", + "vendor/winapi-0.3.9/src/um/wintrust.rs", + "vendor/winapi-0.3.9/src/um/winusb.rs", + "vendor/winapi-0.3.9/src/um/winuser.rs", + "vendor/winapi-0.3.9/src/um/winver.rs", + "vendor/winapi-0.3.9/src/um/wlanapi.rs", + "vendor/winapi-0.3.9/src/um/wlanihv.rs", + "vendor/winapi-0.3.9/src/um/wlanihvtypes.rs", + "vendor/winapi-0.3.9/src/um/wlclient.rs", + "vendor/winapi-0.3.9/src/um/wow64apiset.rs", + "vendor/winapi-0.3.9/src/um/wpdmtpextensions.rs", + "vendor/winapi-0.3.9/src/um/ws2bth.rs", + "vendor/winapi-0.3.9/src/um/ws2spi.rs", + "vendor/winapi-0.3.9/src/um/ws2tcpip.rs", + "vendor/winapi-0.3.9/src/um/wtsapi32.rs", + "vendor/winapi-0.3.9/src/um/xinput.rs", + "vendor/winapi-0.3.9/src/vc/excpt.rs", + "vendor/winapi-0.3.9/src/vc/limits.rs", + "vendor/winapi-0.3.9/src/vc/mod.rs", + "vendor/winapi-0.3.9/src/vc/vadefs.rs", + "vendor/winapi-0.3.9/src/vc/vcruntime.rs", + "vendor/winapi-0.3.9/src/winrt/activation.rs", + "vendor/winapi-0.3.9/src/winrt/hstring.rs", + "vendor/winapi-0.3.9/src/winrt/inspectable.rs", + "vendor/winapi-0.3.9/src/winrt/mod.rs", + "vendor/winapi-0.3.9/src/winrt/roapi.rs", + "vendor/winapi-0.3.9/src/winrt/robuffer.rs", + "vendor/winapi-0.3.9/src/winrt/roerrorapi.rs", + "vendor/winapi-0.3.9/src/winrt/winstring.rs", ], - crate = "value_bag", - crate_root = "vendor/value-bag-1.10.0/src/lib.rs", - edition = "2021", - features = ["inline-i128"], - visibility = [], -) - -cargo.rust_library( - name = "vcpkg-0.2.15", - srcs = ["vendor/vcpkg-0.2.15/src/lib.rs"], - crate = "vcpkg", - crate_root = "vendor/vcpkg-0.2.15/src/lib.rs", + crate = "winapi", + crate_root = "vendor/winapi-0.3.9/src/lib.rs", edition = "2015", - visibility = [], -) - -cargo.rust_library( - name = "vecmap-rs-0.2.2", - srcs = [ - "vendor/vecmap-rs-0.2.2/README.md", - "vendor/vecmap-rs-0.2.2/src/lib.rs", - "vendor/vecmap-rs-0.2.2/src/macros.rs", - "vendor/vecmap-rs-0.2.2/src/map.rs", - "vendor/vecmap-rs-0.2.2/src/map/entry.rs", - "vendor/vecmap-rs-0.2.2/src/map/impls.rs", - "vendor/vecmap-rs-0.2.2/src/map/iter.rs", - "vendor/vecmap-rs-0.2.2/src/map/mutable_keys.rs", - "vendor/vecmap-rs-0.2.2/src/map/serde.rs", - "vendor/vecmap-rs-0.2.2/src/set.rs", - "vendor/vecmap-rs-0.2.2/src/set/impls.rs", - "vendor/vecmap-rs-0.2.2/src/set/iter.rs", - "vendor/vecmap-rs-0.2.2/src/set/serde.rs", - ], - crate = "vecmap", - crate_root = "vendor/vecmap-rs-0.2.2/src/lib.rs", - edition = "2021", features = [ - "default", - "serde", - ], - visibility = [], - deps = [":serde-1.0.217"], -) - -cargo.rust_library( - name = "version_check-0.9.5", - srcs = [ - "vendor/version_check-0.9.5/src/channel.rs", - "vendor/version_check-0.9.5/src/date.rs", - "vendor/version_check-0.9.5/src/lib.rs", - "vendor/version_check-0.9.5/src/version.rs", - ], - crate = "version_check", - crate_root = "vendor/version_check-0.9.5/src/lib.rs", - edition = "2015", - visibility = [], -) - -cargo.rust_library( - name = "wait-timeout-0.2.0", - srcs = [ - "vendor/wait-timeout-0.2.0/src/bin/exit.rs", - "vendor/wait-timeout-0.2.0/src/bin/reader.rs", - "vendor/wait-timeout-0.2.0/src/bin/sleep.rs", - "vendor/wait-timeout-0.2.0/src/lib.rs", - "vendor/wait-timeout-0.2.0/src/unix.rs", - "vendor/wait-timeout-0.2.0/src/windows.rs", - ], - crate = "wait_timeout", - crate_root = "vendor/wait-timeout-0.2.0/src/lib.rs", - edition = "2015", - platform = { - "linux-arm64": dict( - deps = [":libc-0.2.169"], - ), - "linux-x86_64": dict( - deps = [":libc-0.2.169"], - ), - "macos-arm64": dict( - deps = [":libc-0.2.169"], - ), - "macos-x86_64": dict( - deps = [":libc-0.2.169"], - ), - }, - visibility = [], -) - -cargo.rust_library( - name = "waker-fn-1.2.0", - srcs = ["vendor/waker-fn-1.2.0/src/lib.rs"], - crate = "waker_fn", - crate_root = "vendor/waker-fn-1.2.0/src/lib.rs", - edition = "2018", - visibility = [], -) - -cargo.rust_library( - name = "want-0.3.1", - srcs = ["vendor/want-0.3.1/src/lib.rs"], - crate = "want", - crate_root = "vendor/want-0.3.1/src/lib.rs", - edition = "2018", - visibility = [], - deps = [":try-lock-0.2.5"], -) - -cargo.rust_library( - name = "webpki-roots-0.26.3", - srcs = ["vendor/webpki-roots-0.26.3/src/lib.rs"], - crate = "webpki_roots", - crate_root = "vendor/webpki-roots-0.26.3/src/lib.rs", - edition = "2018", - named_deps = { - "pki_types": ":rustls-pki-types-1.11.0", - }, - visibility = [], -) - -cargo.rust_library( - name = "which-4.4.2", - srcs = [ - "vendor/which-4.4.2/src/checker.rs", - "vendor/which-4.4.2/src/error.rs", - "vendor/which-4.4.2/src/finder.rs", - "vendor/which-4.4.2/src/helper.rs", - "vendor/which-4.4.2/src/lib.rs", + "basetsd", + "cfg", + "consoleapi", + "errhandlingapi", + "evntrace", + "fibersapi", + "fileapi", + "handleapi", + "in6addr", + "inaddr", + "knownfolders", + "memoryapi", + "minwinbase", + "minwindef", + "ntdef", + "ntsecapi", + "objbase", + "processenv", + "processthreadsapi", + "shlobj", + "winbase", + "wincon", + "wincrypt", + "windef", + "winerror", + "winioctl", + "ws2ipdef", + "ws2tcpip", ], - crate = "which", - crate_root = "vendor/which-4.4.2/src/lib.rs", - edition = "2021", - platform = { - "linux-arm64": dict( - deps = [":home-0.5.9"], - ), - "linux-x86_64": dict( - deps = [":home-0.5.9"], - ), - "macos-arm64": dict( - deps = [":home-0.5.9"], - ), - "macos-x86_64": dict( - deps = [":home-0.5.9"], - ), + platform = { "windows-gnu": dict( - deps = [ - ":home-0.5.9", - ":once_cell-1.20.3", - ], + rustc_flags = ["@$(location :winapi-0.3.9-build-script-run[rustc_flags])"], + deps = [":winapi-x86_64-pc-windows-gnu-0.4.0"], ), "windows-msvc": dict( - deps = [ - ":home-0.5.9", - ":once_cell-1.20.3", - ], + rustc_flags = ["@$(location :winapi-0.3.9-build-script-run[rustc_flags])"], ), }, visibility = [], - deps = [ - ":either-1.13.0", - ":rustix-0.38.41", - ], ) -cargo.rust_library( - name = "winapi-0.3.9", +cargo.rust_binary( + name = "winapi-0.3.9-build-script-build", srcs = [ + "vendor/winapi-0.3.9/build.rs", "vendor/winapi-0.3.9/src/km/d3dkmthk.rs", "vendor/winapi-0.3.9/src/km/mod.rs", "vendor/winapi-0.3.9/src/lib.rs", @@ -15939,8 +28061,8 @@ cargo.rust_library( "vendor/winapi-0.3.9/src/winrt/roerrorapi.rs", "vendor/winapi-0.3.9/src/winrt/winstring.rs", ], - crate = "winapi", - crate_root = "vendor/winapi-0.3.9/src/lib.rs", + crate = "build_script_build", + crate_root = "vendor/winapi-0.3.9/build.rs", edition = "2015", features = [ "basetsd", @@ -15965,20 +28087,53 @@ cargo.rust_library( "shlobj", "winbase", "wincon", + "wincrypt", "windef", "winerror", "winioctl", "ws2ipdef", "ws2tcpip", ], - platform = { - "windows-gnu": dict( - deps = [":winapi-x86_64-pc-windows-gnu-0.4.0"], - ), - }, visibility = [], ) +buildscript_run( + name = "winapi-0.3.9-build-script-run", + package_name = "winapi", + buildscript_rule = ":winapi-0.3.9-build-script-build", + features = [ + "basetsd", + "cfg", + "consoleapi", + "errhandlingapi", + "evntrace", + "fibersapi", + "fileapi", + "handleapi", + "in6addr", + "inaddr", + "knownfolders", + "memoryapi", + "minwinbase", + "minwindef", + "ntdef", + "ntsecapi", + "objbase", + "processenv", + "processthreadsapi", + "shlobj", + "winbase", + "wincon", + "wincrypt", + "windef", + "winerror", + "winioctl", + "ws2ipdef", + "ws2tcpip", + ], + version = "0.3.9", +) + cargo.rust_library( name = "winapi-util-0.1.9", srcs = [ @@ -17032,6 +29187,1032 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "windows-0.58.0", + srcs = [ + "vendor/windows-0.58.0/src/Windows/AI/MachineLearning/impl.rs", + "vendor/windows-0.58.0/src/Windows/AI/MachineLearning/mod.rs", + "vendor/windows-0.58.0/src/Windows/AI/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Activation/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Activation/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/AppExtensions/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/AppService/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Appointments/AppointmentsProvider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Appointments/DataProvider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Appointments/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Appointments/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Background/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Background/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Calls/Background/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Calls/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Calls/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Chat/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Chat/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/CommunicationBlocking/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Contacts/DataProvider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Contacts/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Contacts/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Contacts/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/ConversationalAgent/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Core/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/Core/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/DataTransfer/ShareTarget/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/DataTransfer/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Email/DataProvider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Email/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/ExtendedExecution/Foreground/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/ExtendedExecution/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Holographic/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/LockScreen/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/PackageExtensions/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Payments/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Payments/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Preview/Holographic/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Preview/InkWorkspace/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Preview/Notes/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Resources/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Resources/Management/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Resources/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Search/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Search/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Search/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserActivities/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserActivities/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserActivities/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserDataAccounts/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserDataAccounts/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserDataAccounts/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserDataTasks/DataProvider/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/UserDataTasks/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/VoiceCommands/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Wallet/System/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/Wallet/mod.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/impl.rs", + "vendor/windows-0.58.0/src/Windows/ApplicationModel/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Html/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Json/impl.rs", + "vendor/windows-0.58.0/src/Windows/Data/Json/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Pdf/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Text/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Xml/Dom/impl.rs", + "vendor/windows-0.58.0/src/Windows/Data/Xml/Dom/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Xml/Xsl/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/Xml/mod.rs", + "vendor/windows-0.58.0/src/Windows/Data/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Adc/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Adc/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Adc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Background/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Bluetooth/Advertisement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Bluetooth/Background/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Bluetooth/GenericAttributeProfile/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Bluetooth/Rfcomm/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Bluetooth/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Custom/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Custom/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Display/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Display/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Enumeration/Pnp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Enumeration/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Enumeration/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Geolocation/Geofencing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Geolocation/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Geolocation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Geolocation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Gpio/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Gpio/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Gpio/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Haptics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/HumanInterfaceDevice/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/I2c/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/I2c/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/I2c/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/I2c/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Input/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Input/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Lights/Effects/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Lights/Effects/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Lights/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Midi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Midi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/PointOfService/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/PointOfService/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/PointOfService/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Portable/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Power/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Printers/Extensions/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Printers/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Pwm/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Pwm/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Pwm/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Radios/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Scanners/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Scanners/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Sensors/Custom/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Sensors/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Sensors/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/SerialCommunication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/SmartCards/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Sms/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Sms/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Spi/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Spi/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Spi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Spi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/Usb/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/WiFi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/WiFiDirect/Services/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/WiFiDirect/mod.rs", + "vendor/windows-0.58.0/src/Windows/Devices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Devices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Embedded/DeviceLockdown/mod.rs", + "vendor/windows-0.58.0/src/Windows/Embedded/mod.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/Collections/impl.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/Collections/mod.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/Diagnostics/impl.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/Diagnostics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/Metadata/mod.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/Numerics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Foundation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/Custom/impl.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/Custom/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/ForceFeedback/impl.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/ForceFeedback/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/impl.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Input/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Preview/GamesEnumeration/impl.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Preview/GamesEnumeration/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/XboxLive/Storage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/XboxLive/mod.rs", + "vendor/windows-0.58.0/src/Windows/Gaming/mod.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/Collation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/DateTimeFormatting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/Fonts/mod.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/NumberFormatting/impl.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/NumberFormatting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/PhoneNumberFormatting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Globalization/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Capture/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/DirectX/Direct3D11/impl.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/DirectX/Direct3D11/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/DirectX/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Display/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Display/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Effects/impl.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Effects/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Holographic/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Imaging/impl.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Imaging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/OptionDetails/impl.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/OptionDetails/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/Workflow/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/Printing3D/mod.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/impl.rs", + "vendor/windows-0.58.0/src/Windows/Graphics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Deployment/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Deployment/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Policies/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Setup/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Update/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/Workplace/mod.rs", + "vendor/windows-0.58.0/src/Windows/Management/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/AppBroadcasting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/AppRecording/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Audio/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Audio/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Capture/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Capture/Frames/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Capture/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Casting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/ClosedCaptioning/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/ContentRestrictions/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Control/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Core/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Core/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Devices/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Devices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Devices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/DialProtocol/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Editing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Effects/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Effects/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/FaceAnalysis/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Import/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/MediaProperties/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/MediaProperties/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Miracast/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Ocr/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/PlayTo/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Playback/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Playback/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Playlists/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Protection/PlayReady/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Protection/PlayReady/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Protection/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/Protection/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Render/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/SpeechRecognition/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/SpeechRecognition/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/SpeechSynthesis/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Streaming/Adaptive/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Streaming/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/Transcoding/mod.rs", + "vendor/windows-0.58.0/src/Windows/Media/impl.rs", + "vendor/windows-0.58.0/src/Windows/Media/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/BackgroundTransfer/impl.rs", + "vendor/windows-0.58.0/src/Windows/Networking/BackgroundTransfer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/Connectivity/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/NetworkOperators/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/Proximity/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/PushNotifications/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/ServiceDiscovery/Dnssd/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/ServiceDiscovery/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/Sockets/impl.rs", + "vendor/windows-0.58.0/src/Windows/Networking/Sockets/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/Vpn/impl.rs", + "vendor/windows-0.58.0/src/Windows/Networking/Vpn/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/XboxLive/mod.rs", + "vendor/windows-0.58.0/src/Windows/Networking/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/Automation/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/Automation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/People/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/Spatial/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/Spatial/Surfaces/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/Spatial/mod.rs", + "vendor/windows-0.58.0/src/Windows/Perception/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/ApplicationModel/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Devices/Notification/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Devices/Power/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Devices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Management/Deployment/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Management/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Media/Devices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Media/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Notification/Management/impl.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Notification/Management/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Notification/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/PersonalInformation/Provisioning/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/PersonalInformation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Phone/PersonalInformation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Speech/Recognition/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/Speech/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/StartScreen/impl.rs", + "vendor/windows-0.58.0/src/Windows/Phone/StartScreen/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/System/Power/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/System/Profile/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/System/UserProfile/GameServices/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/System/UserProfile/GameServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/System/UserProfile/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/System/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/UI/Input/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Phone/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/Identity/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/Identity/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/OnlineId/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/Web/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/Web/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/Web/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/Web/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authentication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authorization/AppCapabilityAccess/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Authorization/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Credentials/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Credentials/impl.rs", + "vendor/windows-0.58.0/src/Windows/Security/Credentials/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Cryptography/Certificates/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Cryptography/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Cryptography/DataProtection/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Cryptography/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/DataProtection/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/EnterpriseData/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/ExchangeActiveSyncProvisioning/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/Isolation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Security/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/Maps/Guidance/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/Maps/LocalSearch/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/Maps/OfflineMaps/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/Maps/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/Store/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/TargetedContent/mod.rs", + "vendor/windows-0.58.0/src/Windows/Services/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/AccessCache/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/AccessCache/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/BulkAccess/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/BulkAccess/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Compression/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/FileProperties/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/FileProperties/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Pickers/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Pickers/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Search/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Search/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Streams/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/Streams/mod.rs", + "vendor/windows-0.58.0/src/Windows/Storage/impl.rs", + "vendor/windows-0.58.0/src/Windows/Storage/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Diagnostics/DevicePortal/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Diagnostics/Telemetry/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Diagnostics/TraceReporting/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Diagnostics/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Display/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Implementation/FileExplorer/impl.rs", + "vendor/windows-0.58.0/src/Windows/System/Implementation/FileExplorer/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Implementation/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Inventory/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Power/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Profile/SystemManufacturers/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Profile/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/RemoteDesktop/Input/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/RemoteDesktop/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/RemoteDesktop/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/RemoteSystems/impl.rs", + "vendor/windows-0.58.0/src/Windows/System/RemoteSystems/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Threading/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Threading/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/Update/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/UserProfile/mod.rs", + "vendor/windows-0.58.0/src/Windows/System/impl.rs", + "vendor/windows-0.58.0/src/Windows/System/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Accessibility/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/ApplicationSettings/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Desktop/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Diagnostics/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Effects/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Interactions/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Interactions/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/Scenes/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Composition/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Core/AnimationMetrics/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Core/AnimationMetrics/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Core/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Core/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Inking/Analysis/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Inking/Analysis/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Inking/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Inking/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Inking/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Inking/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Preview/Injection/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/Spatial/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Input/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Notifications/Management/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Notifications/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Notifications/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Notifications/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Popups/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Popups/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Shell/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Shell/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/StartScreen/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Text/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/Text/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/Text/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/UIAutomation/Core/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/UIAutomation/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/UIAutomation/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/ViewManagement/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/ViewManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/WebUI/Core/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/WebUI/Core/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/WebUI/impl.rs", + "vendor/windows-0.58.0/src/Windows/UI/WebUI/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/WindowManagement/Preview/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/WindowManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Devices/Bluetooth/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Devices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Foundation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Graphics/Direct3D/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Graphics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/NetworkManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Storage/FileSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/Storage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/IO/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/Memory/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/OfflineRegistry/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/Registry/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/SystemInformation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/SystemServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/Threading/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/System/mod.rs", + "vendor/windows-0.58.0/src/Windows/Wdk/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/AtomPub/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/Http/Diagnostics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/Http/Filters/impl.rs", + "vendor/windows-0.58.0/src/Windows/Web/Http/Filters/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/Http/Headers/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/Http/impl.rs", + "vendor/windows-0.58.0/src/Windows/Web/Http/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/Syndication/impl.rs", + "vendor/windows-0.58.0/src/Windows/Web/Syndication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/UI/Interop/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/UI/impl.rs", + "vendor/windows-0.58.0/src/Windows/Web/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Web/impl.rs", + "vendor/windows-0.58.0/src/Windows/Web/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/AI/MachineLearning/DirectML/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/AI/MachineLearning/DirectML/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/AI/MachineLearning/WinML/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/AI/MachineLearning/WinML/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/AI/MachineLearning/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/AI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/HtmlHelp/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/HtmlHelp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/RightsManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/Xml/MsXml/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/Xml/MsXml/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/Xml/XmlLite/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/Xml/XmlLite/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/Xml/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Data/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/AllJoyn/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/BiometricFramework/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Bluetooth/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Communication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/DeviceAccess/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/DeviceAccess/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/DeviceQuery/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Display/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Display/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Enumeration/Pnp/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Enumeration/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Fax/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Fax/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/FunctionDiscovery/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/FunctionDiscovery/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Geolocation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Geolocation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/HumanInterfaceDevice/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/HumanInterfaceDevice/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/ImageAcquisition/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/ImageAcquisition/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/PortableDevices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/PortableDevices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Properties/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Pwm/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Sensors/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Sensors/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/SerialCommunication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Tapi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Tapi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/Usb/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/WebServicesOnDevices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/WebServicesOnDevices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Devices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Foundation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Gaming/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Gaming/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Globalization/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Globalization/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/CompositionSwapchain/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/CompositionSwapchain/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DXCore/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DXCore/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct2D/Common/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct2D/Common/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct2D/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct2D/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D/Dxc/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D/Dxc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D/Fxc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D10/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D10/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D11/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D11/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D11on12/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D11on12/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D12/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D12/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D9/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D9/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D9on12/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Direct3D9on12/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectComposition/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectComposition/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectDraw/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectDraw/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectManipulation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectManipulation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectWrite/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/DirectWrite/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Dwm/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Dxgi/Common/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Dxgi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Dxgi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Gdi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/GdiPlus/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/GdiPlus/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Hlsl/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Imaging/D2D/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Imaging/D2D/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Imaging/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Imaging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/OpenGL/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Printing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/Printing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Graphics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Management/MobileDeviceManagementRegistration/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Management/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/Apo/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/Apo/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/DirectMusic/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/DirectMusic/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/DirectSound/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/DirectSound/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/Endpoints/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/Endpoints/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/XAudio2/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/XAudio2/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Audio/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DeviceManager/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DeviceManager/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DirectShow/Tv/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DirectShow/Tv/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DirectShow/Xml/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DirectShow/Xml/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DirectShow/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DirectShow/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DxMediaObjects/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/DxMediaObjects/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/KernelStreaming/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/KernelStreaming/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/LibrarySharingServices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/LibrarySharingServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/MediaFoundation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/MediaFoundation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/MediaPlayer/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/MediaPlayer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Multimedia/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Multimedia/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/PictureAcquisition/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/PictureAcquisition/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Speech/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Speech/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/Streaming/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/WindowsMediaFormat/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/WindowsMediaFormat/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Media/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/Dhcp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/Dns/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/InternetConnectionWizard/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/MobileBroadband/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/MobileBroadband/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/Multicast/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/Ndis/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetBios/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetManagement/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetShell/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetworkDiagnosticsFramework/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetworkDiagnosticsFramework/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetworkPolicyServer/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/NetworkPolicyServer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/P2P/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/QoS/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/Rras/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/Snmp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WNet/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WebDav/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WiFi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WiFi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsConnectNow/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsConnectNow/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsConnectionManager/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsFirewall/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/WindowsNetworkVirtualization/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/NetworkManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/ActiveDirectory/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/ActiveDirectory/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/BackgroundIntelligentTransferService/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/BackgroundIntelligentTransferService/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/Clustering/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/Clustering/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/HttpServer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/Ldap/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/NetworkListManager/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/NetworkListManager/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/RemoteDifferentialCompression/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/RemoteDifferentialCompression/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WebSocket/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WinHttp/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WinHttp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WinInet/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WinInet/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WinSock/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WindowsWebServices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/WindowsWebServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Networking/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/AppLocker/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authentication/Identity/Provider/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authentication/Identity/Provider/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authentication/Identity/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authentication/Identity/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authentication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authorization/UI/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authorization/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authorization/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Authorization/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/ConfigurationSnapin/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/ConfigurationSnapin/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Credentials/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/Catalog/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/Certificates/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/Certificates/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/Sip/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Cryptography/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/DirectoryServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/EnterpriseData/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/EnterpriseData/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/ExtensibleAuthenticationProtocol/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/ExtensibleAuthenticationProtocol/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Isolation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Isolation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/LicenseProtection/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/NetworkAccessProtection/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Tpm/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/Tpm/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/WinTrust/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/WinWlx/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Security/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Cabinets/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/CloudFilters/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Compression/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/DataDeduplication/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/DataDeduplication/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/DistributedFileSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/EnhancedStorage/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/EnhancedStorage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/FileHistory/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/FileHistory/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/FileServerResourceManager/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/FileServerResourceManager/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/FileSystem/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/FileSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Imapi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Imapi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/IndexServer/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/IndexServer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/IscsiDisc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Jet/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Nvme/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/OfflineFiles/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/OfflineFiles/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Packaging/Appx/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Packaging/Appx/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Packaging/Opc/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Packaging/Opc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Packaging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/StructuredStorage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Vhd/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/VirtualDiskService/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/VirtualDiskService/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Vss/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Vss/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Xps/Printing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Xps/Printing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Xps/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/Xps/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Storage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/AddressBook/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/AddressBook/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Antimalware/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Antimalware/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ApplicationInstallationAndServicing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ApplicationVerifier/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/AssessmentTool/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/AssessmentTool/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ClrHosting/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ClrHosting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/CallObj/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/CallObj/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/ChannelCredentials/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/ChannelCredentials/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/Events/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/Events/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/Marshal/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/Marshal/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/StructuredStorage/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/StructuredStorage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/UI/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/Urlmon/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/Urlmon/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Com/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ComponentServices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ComponentServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Console/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Contacts/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Contacts/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/CorrelationVector/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DataExchange/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DeploymentServices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DeploymentServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DesktopSharing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DesktopSharing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DeveloperLicensing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Ceip/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/ClrProfiling/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/ClrProfiling/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Debug/ActiveScript/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Debug/ActiveScript/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Debug/Extensions/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Debug/Extensions/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Debug/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Debug/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Etw/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/Etw/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/ToolHelp/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/TraceLogging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Diagnostics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DistributedTransactionCoordinator/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/DistributedTransactionCoordinator/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Environment/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ErrorReporting/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/EventCollector/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/EventLog/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/EventNotificationService/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/EventNotificationService/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/GroupPolicy/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/GroupPolicy/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/HostCompute/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/HostComputeNetwork/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/HostComputeSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Hypervisor/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/IO/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Iis/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Iis/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Ioctl/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/JobObjects/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Js/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Kernel/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/LibraryLoader/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Mailslots/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Mapi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Memory/NonVolatile/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Memory/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/MessageQueuing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/MessageQueuing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/MixedReality/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Mmc/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Mmc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Ole/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Ole/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ParentalControls/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ParentalControls/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/PasswordManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Performance/HardwareCounterProfiling/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Performance/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Performance/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Pipes/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Power/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ProcessStatus/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RealTimeCommunications/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RealTimeCommunications/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Recovery/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Registry/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RemoteAssistance/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RemoteAssistance/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RemoteDesktop/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RemoteDesktop/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RemoteManagement/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RemoteManagement/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/RestartManager/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Restore/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Rpc/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Search/Common/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Search/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Search/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SecurityCenter/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SecurityCenter/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ServerBackup/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/ServerBackup/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Services/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SettingsManagementInfrastructure/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SettingsManagementInfrastructure/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SetupAndMigration/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Shutdown/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SideShow/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SideShow/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/StationsAndDesktops/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SubsystemForLinux/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SystemInformation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/SystemServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/TaskScheduler/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/TaskScheduler/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Threading/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Threading/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Time/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/TpmBaseServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/TransactionServer/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/TransactionServer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/UpdateAgent/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/UpdateAgent/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/UpdateAssessment/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/UpdateAssessment/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/UserAccessLogging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Variant/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/VirtualDosMachines/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/AllJoyn/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/AllJoyn/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Composition/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Composition/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/CoreInputView/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/CoreInputView/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Direct3D11/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Direct3D11/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Display/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Display/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/Capture/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/Capture/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/Direct2D/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/Direct2D/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/Imaging/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/Imaging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Graphics/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Holographic/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Holographic/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Isolation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Isolation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/ML/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/ML/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Media/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Media/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Metadata/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Metadata/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Pdf/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Pdf/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Printing/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Printing/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Shell/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Shell/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Storage/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/Storage/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WinRT/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WindowsProgramming/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WindowsProgramming/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WindowsSync/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/WindowsSync/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Wmi/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/Wmi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/System/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Accessibility/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Accessibility/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Animation/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Animation/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/ColorSystem/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/ColorSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Controls/Dialogs/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Controls/Dialogs/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Controls/RichEdit/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Controls/RichEdit/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Controls/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Controls/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/HiDpi/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Ime/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Ime/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Ink/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Ink/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Pointer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Radial/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Radial/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Touch/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/Touch/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/XboxController/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Input/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/InteractionContext/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/LegacyWindowsEnvironmentFeatures/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/LegacyWindowsEnvironmentFeatures/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Magnification/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Notifications/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Notifications/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Ribbon/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Ribbon/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Shell/Common/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Shell/Common/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Shell/PropertiesSystem/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Shell/PropertiesSystem/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Shell/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Shell/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/TabletPC/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/TabletPC/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/TextServices/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/TextServices/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Wpf/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/Wpf/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/UI/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Web/InternetExplorer/impl.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Web/InternetExplorer/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/Web/mod.rs", + "vendor/windows-0.58.0/src/Windows/Win32/mod.rs", + "vendor/windows-0.58.0/src/Windows/mod.rs", + "vendor/windows-0.58.0/src/extensions.rs", + "vendor/windows-0.58.0/src/extensions/Foundation.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Collections.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Collections/Iterable.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Collections/MapView.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Collections/VectorView.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Numerics.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Numerics/Matrix3x2.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Numerics/Matrix4x4.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Numerics/Vector2.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Numerics/Vector3.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/Numerics/Vector4.rs", + "vendor/windows-0.58.0/src/extensions/Foundation/TimeSpan.rs", + "vendor/windows-0.58.0/src/extensions/Win32.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Foundation.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Foundation/BOOL.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Foundation/BOOLEAN.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Foundation/NTSTATUS.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Foundation/VARIANT_BOOL.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Foundation/WIN32_ERROR.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking/WinSock.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking/WinSock/IN6_ADDR.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking/WinSock/IN_ADDR.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking/WinSock/SOCKADDR_IN.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking/WinSock/SOCKADDR_IN6.rs", + "vendor/windows-0.58.0/src/extensions/Win32/Networking/WinSock/SOCKADDR_INET.rs", + "vendor/windows-0.58.0/src/extensions/Win32/System.rs", + "vendor/windows-0.58.0/src/extensions/Win32/System/Com.rs", + "vendor/windows-0.58.0/src/extensions/Win32/System/Com/IDispatch.rs", + "vendor/windows-0.58.0/src/extensions/Win32/System/Rpc.rs", + "vendor/windows-0.58.0/src/extensions/Win32/System/Rpc/RPC_STATUS.rs", + "vendor/windows-0.58.0/src/includes/Win32/UI/WindowsAndMessaging/WindowLong.rs", + "vendor/windows-0.58.0/src/lib.rs", + ], + crate = "windows", + crate_root = "vendor/windows-0.58.0/src/lib.rs", + edition = "2021", + features = [ + "Win32", + "Win32_Foundation", + "Win32_Security", + "Win32_System", + "Win32_System_DataExchange", + "Win32_System_Memory", + "Win32_System_Threading", + "Win32_UI", + "Win32_UI_WindowsAndMessaging", + "default", + "std", + ], + visibility = [], + deps = [ + ":windows-core-0.58.0", + ":windows-targets-0.52.6", + ], +) + cargo.rust_library( name = "windows-core-0.52.0", srcs = [ @@ -17143,6 +30324,61 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "windows-core-0.58.0", + srcs = [ + "vendor/windows-core-0.58.0/src/agile_reference.rs", + "vendor/windows-core-0.58.0/src/array.rs", + "vendor/windows-core-0.58.0/src/as_impl.rs", + "vendor/windows-core-0.58.0/src/com_object.rs", + "vendor/windows-core-0.58.0/src/event.rs", + "vendor/windows-core-0.58.0/src/guid.rs", + "vendor/windows-core-0.58.0/src/handles.rs", + "vendor/windows-core-0.58.0/src/imp/bindings.rs", + "vendor/windows-core-0.58.0/src/imp/can_into.rs", + "vendor/windows-core-0.58.0/src/imp/com_bindings.rs", + "vendor/windows-core-0.58.0/src/imp/factory_cache.rs", + "vendor/windows-core-0.58.0/src/imp/generic_factory.rs", + "vendor/windows-core-0.58.0/src/imp/mod.rs", + "vendor/windows-core-0.58.0/src/imp/ref_count.rs", + "vendor/windows-core-0.58.0/src/imp/sha1.rs", + "vendor/windows-core-0.58.0/src/imp/waiter.rs", + "vendor/windows-core-0.58.0/src/imp/weak_ref_count.rs", + "vendor/windows-core-0.58.0/src/imp/windows.rs", + "vendor/windows-core-0.58.0/src/inspectable.rs", + "vendor/windows-core-0.58.0/src/interface.rs", + "vendor/windows-core-0.58.0/src/lib.rs", + "vendor/windows-core-0.58.0/src/out_param.rs", + "vendor/windows-core-0.58.0/src/out_ref.rs", + "vendor/windows-core-0.58.0/src/param.rs", + "vendor/windows-core-0.58.0/src/param_value.rs", + "vendor/windows-core-0.58.0/src/ref.rs", + "vendor/windows-core-0.58.0/src/runtime_name.rs", + "vendor/windows-core-0.58.0/src/runtime_type.rs", + "vendor/windows-core-0.58.0/src/scoped_interface.rs", + "vendor/windows-core-0.58.0/src/type.rs", + "vendor/windows-core-0.58.0/src/unknown.rs", + "vendor/windows-core-0.58.0/src/variant.rs", + "vendor/windows-core-0.58.0/src/weak.rs", + "vendor/windows-core-0.58.0/src/windows.rs", + ], + crate = "windows_core", + crate_root = "vendor/windows-core-0.58.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "std", + ], + visibility = [], + deps = [ + ":windows-implement-0.58.0", + ":windows-interface-0.58.0", + ":windows-result-0.2.0", + ":windows-strings-0.1.0", + ":windows-targets-0.52.6", + ], +) + cargo.rust_library( name = "windows-implement-0.57.0", srcs = ["vendor/windows-implement-0.57.0/src/lib.rs"], @@ -17158,6 +30394,21 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "windows-implement-0.58.0", + srcs = ["vendor/windows-implement-0.58.0/src/lib.rs"], + crate = "windows_implement", + crate_root = "vendor/windows-implement-0.58.0/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "windows-interface-0.57.0", srcs = ["vendor/windows-interface-0.57.0/src/lib.rs"], @@ -17173,6 +30424,21 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "windows-interface-0.58.0", + srcs = ["vendor/windows-interface-0.58.0/src/lib.rs"], + crate = "windows_interface", + crate_root = "vendor/windows-interface-0.58.0/src/lib.rs", + edition = "2021", + proc_macro = True, + visibility = [], + deps = [ + ":proc-macro2-1.0.86", + ":quote-1.0.36", + ":syn-2.0.87", + ], +) + cargo.rust_library( name = "windows-registry-0.2.0", srcs = [ @@ -18286,6 +31552,81 @@ cargo.rust_library( deps = [":memchr-2.7.4"], ) +cargo.rust_library( + name = "winnow-0.7.1", + srcs = [ + "vendor/winnow-0.7.1/examples/css/parser.rs", + "vendor/winnow-0.7.1/src/_topic/arithmetic.rs", + "vendor/winnow-0.7.1/src/_topic/error.rs", + "vendor/winnow-0.7.1/src/_topic/fromstr.rs", + "vendor/winnow-0.7.1/src/_topic/http.rs", + "vendor/winnow-0.7.1/src/_topic/ini.rs", + "vendor/winnow-0.7.1/src/_topic/json.rs", + "vendor/winnow-0.7.1/src/_topic/language.rs", + "vendor/winnow-0.7.1/src/_topic/mod.rs", + "vendor/winnow-0.7.1/src/_topic/nom.rs", + "vendor/winnow-0.7.1/src/_topic/partial.rs", + "vendor/winnow-0.7.1/src/_topic/performance.rs", + "vendor/winnow-0.7.1/src/_topic/s_expression.rs", + "vendor/winnow-0.7.1/src/_topic/stream.rs", + "vendor/winnow-0.7.1/src/_topic/why.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_0.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_1.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_2.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_3.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_4.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_5.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_6.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_7.rs", + "vendor/winnow-0.7.1/src/_tutorial/chapter_8.rs", + "vendor/winnow-0.7.1/src/_tutorial/mod.rs", + "vendor/winnow-0.7.1/src/ascii/mod.rs", + "vendor/winnow-0.7.1/src/ascii/tests.rs", + "vendor/winnow-0.7.1/src/binary/bits/mod.rs", + "vendor/winnow-0.7.1/src/binary/bits/tests.rs", + "vendor/winnow-0.7.1/src/binary/mod.rs", + "vendor/winnow-0.7.1/src/binary/tests.rs", + "vendor/winnow-0.7.1/src/combinator/branch.rs", + "vendor/winnow-0.7.1/src/combinator/core.rs", + "vendor/winnow-0.7.1/src/combinator/debug/internals.rs", + "vendor/winnow-0.7.1/src/combinator/debug/mod.rs", + "vendor/winnow-0.7.1/src/combinator/impls.rs", + "vendor/winnow-0.7.1/src/combinator/mod.rs", + "vendor/winnow-0.7.1/src/combinator/multi.rs", + "vendor/winnow-0.7.1/src/combinator/sequence.rs", + "vendor/winnow-0.7.1/src/combinator/tests.rs", + "vendor/winnow-0.7.1/src/error.rs", + "vendor/winnow-0.7.1/src/lib.rs", + "vendor/winnow-0.7.1/src/macros/dispatch.rs", + "vendor/winnow-0.7.1/src/macros/mod.rs", + "vendor/winnow-0.7.1/src/macros/seq.rs", + "vendor/winnow-0.7.1/src/macros/tests.rs", + "vendor/winnow-0.7.1/src/parser.rs", + "vendor/winnow-0.7.1/src/stream/bstr.rs", + "vendor/winnow-0.7.1/src/stream/bytes.rs", + "vendor/winnow-0.7.1/src/stream/locating.rs", + "vendor/winnow-0.7.1/src/stream/mod.rs", + "vendor/winnow-0.7.1/src/stream/partial.rs", + "vendor/winnow-0.7.1/src/stream/range.rs", + "vendor/winnow-0.7.1/src/stream/recoverable.rs", + "vendor/winnow-0.7.1/src/stream/stateful.rs", + "vendor/winnow-0.7.1/src/stream/tests.rs", + "vendor/winnow-0.7.1/src/stream/token.rs", + "vendor/winnow-0.7.1/src/token/mod.rs", + "vendor/winnow-0.7.1/src/token/tests.rs", + ], + crate = "winnow", + crate_root = "vendor/winnow-0.7.1/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "std", + ], + visibility = [], + deps = [":memchr-2.7.4"], +) + cargo.rust_library( name = "write16-1.0.0", srcs = ["vendor/write16-1.0.0/src/lib.rs"], @@ -18314,6 +31655,77 @@ cargo.rust_library( visibility = [], ) +cargo.rust_library( + name = "wyz-0.5.1", + srcs = [ + "vendor/wyz-0.5.1/src/bidi.rs", + "vendor/wyz-0.5.1/src/comu.rs", + "vendor/wyz-0.5.1/src/exit.rs", + "vendor/wyz-0.5.1/src/fmt.rs", + "vendor/wyz-0.5.1/src/lib.rs", + "vendor/wyz-0.5.1/src/range.rs", + "vendor/wyz-0.5.1/src/wm.rs", + ], + crate = "wyz", + crate_root = "vendor/wyz-0.5.1/src/lib.rs", + edition = "2018", + visibility = [], + deps = [":tap-1.0.1"], +) + +cargo.rust_library( + name = "yaml-rust2-0.9.0", + srcs = [ + "vendor/yaml-rust2-0.9.0/src/char_traits.rs", + "vendor/yaml-rust2-0.9.0/src/debug.rs", + "vendor/yaml-rust2-0.9.0/src/emitter.rs", + "vendor/yaml-rust2-0.9.0/src/lib.rs", + "vendor/yaml-rust2-0.9.0/src/parser.rs", + "vendor/yaml-rust2-0.9.0/src/scanner.rs", + "vendor/yaml-rust2-0.9.0/src/yaml.rs", + ], + crate = "yaml_rust2", + crate_root = "vendor/yaml-rust2-0.9.0/src/lib.rs", + edition = "2021", + features = [ + "default", + "encoding", + ], + visibility = [], + deps = [ + ":arraydeque-0.5.1", + ":encoding_rs-0.8.34", + ":hashlink-0.9.1", + ], +) + +cargo.rust_library( + name = "yansi-1.0.1", + srcs = [ + "vendor/yansi-1.0.1/src/attr_quirk.rs", + "vendor/yansi-1.0.1/src/bitops.rs", + "vendor/yansi-1.0.1/src/color.rs", + "vendor/yansi-1.0.1/src/condition.rs", + "vendor/yansi-1.0.1/src/global.rs", + "vendor/yansi-1.0.1/src/hyperlink.rs", + "vendor/yansi-1.0.1/src/lib.rs", + "vendor/yansi-1.0.1/src/macros.rs", + "vendor/yansi-1.0.1/src/paint.rs", + "vendor/yansi-1.0.1/src/set.rs", + "vendor/yansi-1.0.1/src/style.rs", + "vendor/yansi-1.0.1/src/windows.rs", + ], + crate = "yansi", + crate_root = "vendor/yansi-1.0.1/src/lib.rs", + edition = "2021", + features = [ + "alloc", + "default", + "std", + ], + visibility = [], +) + cargo.rust_library( name = "yoke-0.7.4", srcs = [ @@ -18380,6 +31792,17 @@ cargo.rust_library( crate = "zerocopy", crate_root = "vendor/zerocopy-0.7.35/src/lib.rs", edition = "2018", + env = { + "CARGO_MANIFEST_DIR": "vendor/zerocopy-0.7.35", + "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser ", + "CARGO_PKG_DESCRIPTION": "Utilities for zero-copy parsing and serialization", + "CARGO_PKG_NAME": "zerocopy", + "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy", + "CARGO_PKG_VERSION": "0.7.35", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "7", + "CARGO_PKG_VERSION_PATCH": "35", + }, features = [ "byteorder", "default", @@ -18394,6 +31817,303 @@ cargo.rust_library( ], ) +cargo.rust_library( + name = "zerocopy-0.8.16", + srcs = [ + "vendor/zerocopy-0.8.16/src/byte_slice.rs", + "vendor/zerocopy-0.8.16/src/byteorder.rs", + "vendor/zerocopy-0.8.16/src/deprecated.rs", + "vendor/zerocopy-0.8.16/src/error.rs", + "vendor/zerocopy-0.8.16/src/impls.rs", + "vendor/zerocopy-0.8.16/src/layout.rs", + "vendor/zerocopy-0.8.16/src/lib.rs", + "vendor/zerocopy-0.8.16/src/macros.rs", + "vendor/zerocopy-0.8.16/src/pointer/aliasing_safety.rs", + "vendor/zerocopy-0.8.16/src/pointer/mod.rs", + "vendor/zerocopy-0.8.16/src/pointer/ptr.rs", + "vendor/zerocopy-0.8.16/src/ref.rs", + "vendor/zerocopy-0.8.16/src/util/macro_util.rs", + "vendor/zerocopy-0.8.16/src/util/macros.rs", + "vendor/zerocopy-0.8.16/src/util/mod.rs", + "vendor/zerocopy-0.8.16/src/wrappers.rs", + ], + crate = "zerocopy", + crate_root = "vendor/zerocopy-0.8.16/src/lib.rs", + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/zerocopy-0.8.16", + "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser ", + "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", + "CARGO_PKG_NAME": "zerocopy", + "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy", + "CARGO_PKG_VERSION": "0.8.16", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "8", + "CARGO_PKG_VERSION_PATCH": "16", + }, + features = ["simd"], + rustc_flags = ["@$(location :zerocopy-0.8.16-build-script-run[rustc_flags])"], + visibility = [], +) + +cargo.rust_binary( + name = "zerocopy-0.8.16-build-script-build", + srcs = [ + "vendor/zerocopy-0.8.16/build.rs", + "vendor/zerocopy-0.8.16/src/byte_slice.rs", + "vendor/zerocopy-0.8.16/src/byteorder.rs", + "vendor/zerocopy-0.8.16/src/deprecated.rs", + "vendor/zerocopy-0.8.16/src/error.rs", + "vendor/zerocopy-0.8.16/src/impls.rs", + "vendor/zerocopy-0.8.16/src/layout.rs", + "vendor/zerocopy-0.8.16/src/lib.rs", + "vendor/zerocopy-0.8.16/src/macros.rs", + "vendor/zerocopy-0.8.16/src/pointer/aliasing_safety.rs", + "vendor/zerocopy-0.8.16/src/pointer/mod.rs", + "vendor/zerocopy-0.8.16/src/pointer/ptr.rs", + "vendor/zerocopy-0.8.16/src/ref.rs", + "vendor/zerocopy-0.8.16/src/util/macro_util.rs", + "vendor/zerocopy-0.8.16/src/util/macros.rs", + "vendor/zerocopy-0.8.16/src/util/mod.rs", + "vendor/zerocopy-0.8.16/src/wrappers.rs", + "vendor/zerocopy-0.8.16/tests/trybuild.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-from-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-from-zeros.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-immutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-into-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-issue-1296.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-known-layout.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-try-from-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/diagnostic-not-implemented-unaligned.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/include_value_not_from_bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/include_value_wrong_size.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/invalid-impls/invalid-impls.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/max-align.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-const.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-dst-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-dst-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-illegal-lifetime.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-dst-not-references.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-immutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-mut-src-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ptr-to-usize.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-dst-mutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-dst-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-dst-not-nocell.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-illegal-lifetime.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-dst-not-references.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-not-nocell.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-ref-src-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/transmute-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute-dst-not-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_mut-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_mut-dst-not-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_mut-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_mut-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_mut-src-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_mut-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_ref-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_ref-dst-mutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_ref-dst-not-immutable-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_ref-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_ref-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-msrv/try_transmute_ref-src-not-immutable-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-from-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-from-zeros.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-immutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-into-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-issue-1296.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-known-layout.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-try-from-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/diagnostic-not-implemented-unaligned.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/include_value_not_from_bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/include_value_wrong_size.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/invalid-impls/invalid-impls.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/max-align.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-const.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-dst-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-dst-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-illegal-lifetime.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-dst-not-references.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-immutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-mut-src-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ptr-to-usize.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-dst-mutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-dst-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-dst-not-nocell.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-illegal-lifetime.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-dst-not-references.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-not-nocell.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-ref-src-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/transmute-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute-dst-not-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_mut-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_mut-dst-not-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_mut-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_mut-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_mut-src-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_mut-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_ref-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_ref-dst-mutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_ref-dst-not-immutable-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_ref-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_ref-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-nightly/try_transmute_ref-src-not-immutable-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-from-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-from-zeros.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-immutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-into-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-issue-1296.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-known-layout.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-try-from-bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/diagnostic-not-implemented-unaligned.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/include_value_not_from_bytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/include_value_wrong_size.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/invalid-impls/invalid-impls.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/max-align.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-const.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-dst-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-dst-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-illegal-lifetime.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-dst-not-references.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-immutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-mut-src-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ptr-to-usize.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-dst-mutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-dst-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-dst-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-dst-not-nocell.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-illegal-lifetime.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-dst-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-dst-not-references.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-dst-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-generic.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-not-a-reference.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-not-nocell.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-ref-src-unsized.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/transmute-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute-dst-not-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_mut-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_mut-dst-not-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_mut-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_mut-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_mut-src-not-frombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_mut-src-not-intobytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_ref-alignment-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_ref-dst-mutable.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_ref-size-decrease.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_ref-size-increase.rs", + "vendor/zerocopy-0.8.16/tests/ui-stable/try_transmute_ref-src-not-immutable-intobytes.rs", + ], + crate = "build_script_build", + crate_root = "vendor/zerocopy-0.8.16/build.rs", + edition = "2021", + env = { + "CARGO_MANIFEST_DIR": "vendor/zerocopy-0.8.16", + "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser ", + "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", + "CARGO_PKG_NAME": "zerocopy", + "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy", + "CARGO_PKG_VERSION": "0.8.16", + "CARGO_PKG_VERSION_MAJOR": "0", + "CARGO_PKG_VERSION_MINOR": "8", + "CARGO_PKG_VERSION_PATCH": "16", + }, + features = ["simd"], + visibility = [], +) + +buildscript_run( + name = "zerocopy-0.8.16-build-script-run", + package_name = "zerocopy", + buildscript_rule = ":zerocopy-0.8.16-build-script-build", + features = ["simd"], + version = "0.8.16", +) + cargo.rust_library( name = "zerocopy-derive-0.7.35", srcs = [ @@ -18627,10 +32347,45 @@ cargo.rust_library( "std", "zdict_builder", ], + rustc_flags = ["@$(location :zstd-safe-7.2.1-build-script-run[rustc_flags])"], visibility = [], deps = [":zstd-sys-2.0.13+zstd.1.5.6"], ) +cargo.rust_binary( + name = "zstd-safe-7.2.1-build-script-build", + srcs = [ + "vendor/zstd-safe-7.2.1/build.rs", + "vendor/zstd-safe-7.2.1/src/constants.rs", + "vendor/zstd-safe-7.2.1/src/constants_experimental.rs", + "vendor/zstd-safe-7.2.1/src/lib.rs", + "vendor/zstd-safe-7.2.1/src/tests.rs", + ], + crate = "build_script_build", + crate_root = "vendor/zstd-safe-7.2.1/build.rs", + edition = "2018", + features = [ + "arrays", + "legacy", + "std", + "zdict_builder", + ], + visibility = [], +) + +buildscript_run( + name = "zstd-safe-7.2.1-build-script-run", + package_name = "zstd-safe", + buildscript_rule = ":zstd-safe-7.2.1-build-script-build", + features = [ + "arrays", + "legacy", + "std", + "zdict_builder", + ], + version = "7.2.1", +) + cargo.rust_library( name = "zstd-sys-2.0.13+zstd.1.5.6", srcs = [ @@ -18646,10 +32401,60 @@ cargo.rust_library( crate = "zstd_sys", crate_root = "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/lib.rs", edition = "2018", + env = { + "OUT_DIR": "$(location :zstd-sys-2.0.13+zstd.1.5.6-build-script-run[out_dir])", + }, + features = [ + "legacy", + "std", + "zdict_builder", + ], + rustc_flags = [ + "-Lnative=$(location :zstd-sys-2.0.13+zstd.1.5.6-build-script-run[out_dir])", + "-lstatic=zstd", + ], + visibility = [], +) + +cargo.rust_binary( + name = "zstd-sys-2.0.13+zstd.1.5.6-build-script-build", + srcs = [ + "vendor/zstd-sys-2.0.13+zstd.1.5.6/build.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/bindings_zdict.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/bindings_zdict_experimental.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/bindings_zdict_std_experimental.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/bindings_zstd.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/bindings_zstd_experimental.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/bindings_zstd_std_experimental.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/lib.rs", + "vendor/zstd-sys-2.0.13+zstd.1.5.6/src/wasm_shim.rs", + ], + crate = "build_script_build", + crate_root = "vendor/zstd-sys-2.0.13+zstd.1.5.6/build.rs", + edition = "2018", features = [ "legacy", "std", "zdict_builder", ], visibility = [], + deps = [ + ":cc-1.1.12", + ":pkg-config-0.3.30", + ], +) + +buildscript_run( + name = "zstd-sys-2.0.13+zstd.1.5.6-build-script-run", + package_name = "zstd-sys", + buildscript_rule = ":zstd-sys-2.0.13+zstd.1.5.6-build-script-build", + env = { + "OPT_LEVEL": "3", + }, + features = [ + "legacy", + "std", + "zdict_builder", + ], + version = "2.0.13+zstd.1.5.6", ) diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 3b3ac8db..0d49f067 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -5861,17 +5861,75 @@ dependencies = [ name = "rust-third-party" version = "0.1.0" dependencies = [ + "anyhow", + "assert_cmd", + "async-session", "async-std", + "async-stream", + "async-trait", + "axum", + "axum-extra", + "axum-server", + "base64 0.22.1", + "bincode", "bs58", + "bstr", + "byteorder", + "bytes", + "cedar-policy", + "chrono", + "clap", + "colored", + "config", + "crossbeam-channel", + "ctrlc", + "dashmap 6.1.0", + "diffs", + "dotenvy", + "ed25519-dalek", + "encoding_rs", + "envsubst", + "flate2", + "futures", + "futures-util", "go-defer", "hex", + "http 1.1.0", + "idgenerator", + "itertools 0.14.0", + "jemallocator", "lazy_static", + "lru-mem", + "memchr", + "mimalloc", + "num_cpus", + "oauth2", "openssl", + "rand 0.9.0", + "rayon", + "regex", + "reqwest", + "ring", + "russh", "rusty_vault", + "sea-orm", "secp256k1", "serde", "serde_json", + "sha1", + "shadow-rs", + "sysinfo 0.33.1", + "thiserror 2.0.11", + "threadpool", "tokio", + "tokio-stream", + "tokio-util", + "tower 0.5.2", + "tower-http", + "tracing", + "tracing-appender", + "tracing-subscriber", + "uuid", ] [[package]] diff --git a/third-party/Cargo.toml b/third-party/Cargo.toml index bde7876d..993a99d6 100644 --- a/third-party/Cargo.toml +++ b/third-party/Cargo.toml @@ -19,15 +19,74 @@ bs58 = "0.5.1" serde = { version = "1.0.117", features = ["derive"] } secp256k1 = { version = "0.30.0" , features = ["serde", "rand","hashes"] } tokio = {version = "1.43.0", features = ["full"]} +tokio-util = { version = "0.7.11", features = ["io"] } async-std = "1.13.0" anyhow = "1.0.93" axum = "0.8.1" -clap = "4.5.28" +clap = { version = "4.5.28", features = ["derive"] } base64 = "0.22.1" dotenvy = "0.15.7" tracing = "0.1.40" +tracing-subscriber = "0.3.19" thiserror = "2.0.11" async-trait = "0.1.86" -reqwest = "0.12.12" -assert_cmd = "2.0.16" \ No newline at end of file +reqwest = { version = "0.12.12", features = ["json"] } +assert_cmd = "2.0.16" +# for one dep of different modules, features can be combined +sea-orm = { version = "1.1.4", features = [ + "sqlx-postgres", + "sqlx-mysql", + "sqlx-sqlite", + "runtime-tokio-rustls", + "macros", +] } +envsubst = "0.2.1" +regex = "1.11.1" +rand = "0.9.0" +config = "0.15.7" +idgenerator = "2.0.0" +cedar-policy = "4.3.1" +itertools = "0.14.0" +diffs = "0.5.1" +sha1 = "0.10.6" +flate2 = { version = "1.0.35",features = ["zlib"] } +bstr = "1.11.3" +colored = "3.0.0" +chrono = "0.4.39" +uuid = { version = "1.13.1",features = ["v4"] } +threadpool = "1.8.1" +num_cpus = "1.16.0" +dashmap = "6.0.1" +lru-mem = "0.3.0" +bincode = "1.3.3" +byteorder = "1.5.0" +futures-util = "0.3.30" +bytes = "1.10.0" +memchr = "2.7.4" +encoding_rs = "0.8.31" +rayon = "1.10.0" +futures = "0.3.30" +tokio-stream = "0.1.17" +sysinfo = "0.33.1" +ring = "0.17.8" +crossbeam-channel = "0.5.10" +jemallocator = "0.5.4" +mimalloc = "0.1.43" +http = "1.1.0" +async-session = "3.0.0" +oauth2 = "5.0.0" +ctrlc = "3.4.4" +ed25519-dalek = { version = "2.1.1", features = ["pkcs8"] } +async-stream = "0.3.6" +axum-extra = { version = "0.10.0", features = ["typed-header"] } +tower-http = { version = "0.6.1", features = [ + "cors", + "trace", + "decompression-full", +] } +russh = "0.50.0" +tracing-appender = "0.2" +axum-server = { version = "0.7.1", features = ["tls-rustls"] } +shadow-rs = "0.36.0" +tower = "0.5.2" \ No newline at end of file diff --git a/third-party/README.md b/third-party/README.md index c00023fe..d27d8faa 100644 --- a/third-party/README.md +++ b/third-party/README.md @@ -7,6 +7,13 @@ is then used to analyze these dependencies and generate Buck2 build rules in the This setup allows you to reference dependencies using the format `//third-party:` in your own build rules. +## Attention +You need to pay special attention to these `fixups.toml` to ensure cross device compatibility: +- borsh +- openssl-sys +- ring +- mime_guess + ## Update dependencies ### 1. Update `Cargo.toml` You can treat **third-party** as a normal Cargo project that manages **all** dependencies for the `Mega` project. diff --git a/third-party/buckify.sh b/third-party/buckify.sh new file mode 100755 index 00000000..2967d255 --- /dev/null +++ b/third-party/buckify.sh @@ -0,0 +1,13 @@ +#!/usr/bin/bash +set -e + +# Change to the directory of the script, so that relative paths work +cd "$(dirname "${BASH_SOURCE[0]}")" + +# Generate BUCK files for third-party dependencies +reindeer --third-party-dir . buckify + +# Additional fixup for //third-party:mime_guess-2.0.x +old_env='"OUT_DIR": "\$(location :mime_guess-\(2\.0\.[0-9]\+\)-build-script-run\[out_dir\])",' +new_env='"MIME_TYPES_GENERATED_PATH": "\$(location :mime_guess-\1-build-script-run\[out_dir\])/mime_types_generated\.rs",' +sed -i "s|$old_env|$new_env|" ./BUCK \ No newline at end of file diff --git a/third-party/fixups/aes-gcm/fixups.toml b/third-party/fixups/aes-gcm/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/aes-gcm/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/anyhow/fixups.toml b/third-party/fixups/anyhow/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/anyhow/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/argon2/fixups.toml b/third-party/fixups/argon2/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/argon2/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/axum/fixups.toml b/third-party/fixups/axum/fixups.toml new file mode 100644 index 00000000..2de4a0d9 --- /dev/null +++ b/third-party/fixups/axum/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "src/docs/**/*.md", +] diff --git a/third-party/fixups/base64ct/fixups.toml b/third-party/fixups/base64ct/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/base64ct/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/bcrypt-pbkdf/fixups.toml b/third-party/fixups/bcrypt-pbkdf/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/bcrypt-pbkdf/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/bigdecimal/fixups.toml b/third-party/fixups/bigdecimal/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/bigdecimal/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/bindgen/fixups.toml b/third-party/fixups/bindgen/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/bindgen/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/bitvec/fixups.toml b/third-party/fixups/bitvec/fixups.toml new file mode 100644 index 00000000..65eb0fb3 --- /dev/null +++ b/third-party/fixups/bitvec/fixups.toml @@ -0,0 +1,4 @@ +extra_srcs = [ + "doc/**/*.md", + "README.md" +] diff --git a/third-party/fixups/blake3/fixups.toml b/third-party/fixups/blake3/fixups.toml new file mode 100644 index 00000000..a15618c5 --- /dev/null +++ b/third-party/fixups/blake3/fixups.toml @@ -0,0 +1,3 @@ +[[buildscript]] +[buildscript.rustc_flags] +env = { "OPT_LEVEL" = "3" } \ No newline at end of file diff --git a/third-party/fixups/borsh/fixups.toml b/third-party/fixups/borsh/fixups.toml new file mode 100644 index 00000000..750241ab --- /dev/null +++ b/third-party/fixups/borsh/fixups.toml @@ -0,0 +1,6 @@ +cargo_env = true +extra_srcs = [ + "Cargo.toml", +] +# ~/.cargo/bin/cargo is not okay +env = { CARGO = "/home/bean/.cargo/bin/cargo"} \ No newline at end of file diff --git a/third-party/fixups/bstr/fixups.toml b/third-party/fixups/bstr/fixups.toml new file mode 100644 index 00000000..6f256a86 --- /dev/null +++ b/third-party/fixups/bstr/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "src/unicode/fsm/*.dfa" +] \ No newline at end of file diff --git a/third-party/fixups/cedar-policy-core/fixups.toml b/third-party/fixups/cedar-policy-core/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/cedar-policy-core/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/cedar-policy-validator/fixups.toml b/third-party/fixups/cedar-policy-validator/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/cedar-policy-validator/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/cedar-policy/fixups.toml b/third-party/fixups/cedar-policy/fixups.toml new file mode 100644 index 00000000..2605628c --- /dev/null +++ b/third-party/fixups/cedar-policy/fixups.toml @@ -0,0 +1,5 @@ +cargo_env = true +extra_srcs = [ + "experimental_warning.md", + "README.md" +] \ No newline at end of file diff --git a/third-party/fixups/clang-sys/fixups.toml b/third-party/fixups/clang-sys/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/clang-sys/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/crunchy/fixups.toml b/third-party/fixups/crunchy/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/crunchy/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/crypto-bigint/fixups.toml b/third-party/fixups/crypto-bigint/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/crypto-bigint/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/curve25519-dalek-derive/fixups.toml b/third-party/fixups/curve25519-dalek-derive/fixups.toml new file mode 100644 index 00000000..16018e02 --- /dev/null +++ b/third-party/fixups/curve25519-dalek-derive/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] \ No newline at end of file diff --git a/third-party/fixups/curve25519-dalek/fixups.toml b/third-party/fixups/curve25519-dalek/fixups.toml new file mode 100644 index 00000000..721f7c8c --- /dev/null +++ b/third-party/fixups/curve25519-dalek/fixups.toml @@ -0,0 +1,8 @@ +extra_srcs = [ + "README.md", + "docs/avx2-notes.md", + "docs/parallel-formulas.md", +] + +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/der/fixups.toml b/third-party/fixups/der/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/der/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/ecdsa/fixups.toml b/third-party/fixups/ecdsa/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/ecdsa/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/ed25519/fixups.toml b/third-party/fixups/ed25519/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/ed25519/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/elliptic-curve/fixups.toml b/third-party/fixups/elliptic-curve/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/elliptic-curve/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/getrandom/fixups.toml b/third-party/fixups/getrandom/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/getrandom/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/git2/fixups.toml b/third-party/fixups/git2/fixups.toml new file mode 100644 index 00000000..177ef314 --- /dev/null +++ b/third-party/fixups/git2/fixups.toml @@ -0,0 +1 @@ +cargo_env = true \ No newline at end of file diff --git a/third-party/fixups/hex-literal/fixups.toml b/third-party/fixups/hex-literal/fixups.toml new file mode 100644 index 00000000..16018e02 --- /dev/null +++ b/third-party/fixups/hex-literal/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] \ No newline at end of file diff --git a/third-party/fixups/indexmap/fixups.toml b/third-party/fixups/indexmap/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/indexmap/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/internal-russh-forked-ssh-key/fixups.toml b/third-party/fixups/internal-russh-forked-ssh-key/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/internal-russh-forked-ssh-key/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/io-lifetimes/fixups.toml b/third-party/fixups/io-lifetimes/fixups.toml new file mode 100644 index 00000000..dd8e7897 --- /dev/null +++ b/third-party/fixups/io-lifetimes/fixups.toml @@ -0,0 +1 @@ +buildscript = [] \ No newline at end of file diff --git a/third-party/fixups/json5/fixups.toml b/third-party/fixups/json5/fixups.toml new file mode 100644 index 00000000..02cac722 --- /dev/null +++ b/third-party/fixups/json5/fixups.toml @@ -0,0 +1,4 @@ +cargo_env = true +extra_srcs = [ + "src/json5.pest" +] diff --git a/third-party/fixups/lalrpop/fixups.toml b/third-party/fixups/lalrpop/fixups.toml new file mode 100644 index 00000000..177ef314 --- /dev/null +++ b/third-party/fixups/lalrpop/fixups.toml @@ -0,0 +1 @@ +cargo_env = true \ No newline at end of file diff --git a/third-party/fixups/libc/fixups.toml b/third-party/fixups/libc/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/libc/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/libgit2-sys/fixups.toml b/third-party/fixups/libgit2-sys/fixups.toml new file mode 100644 index 00000000..6702db69 --- /dev/null +++ b/third-party/fixups/libgit2-sys/fixups.toml @@ -0,0 +1,8 @@ +rustc_flags = [ + "-Lnative=$(location :libgit2-sys-0.17.0+1.8.1-build-script-run[out_dir])/build", + "-lstatic=git2", +] + +[[buildscript]] +[buildscript.gen_srcs] +env = { OPT_LEVEL = "3" } \ No newline at end of file diff --git a/third-party/fixups/libsqlite3-sys/fixups.toml b/third-party/fixups/libsqlite3-sys/fixups.toml new file mode 100644 index 00000000..37375ebb --- /dev/null +++ b/third-party/fixups/libsqlite3-sys/fixups.toml @@ -0,0 +1,5 @@ +cargo_env = true + +[[buildscript]] +[buildscript.gen_srcs] +env = { OPT_LEVEL = "3" } \ No newline at end of file diff --git a/third-party/fixups/libz-sys/fixups.toml b/third-party/fixups/libz-sys/fixups.toml new file mode 100644 index 00000000..137b3422 --- /dev/null +++ b/third-party/fixups/libz-sys/fixups.toml @@ -0,0 +1,6 @@ +[[buildscript]] +[buildscript.gen_srcs] + +#[[buildscript]] +#[buildscript.rustc_flags] +env = { "OPT_LEVEL" = "3" } \ No newline at end of file diff --git a/third-party/fixups/miette/fixups.toml b/third-party/fixups/miette/fixups.toml new file mode 100644 index 00000000..177ef314 --- /dev/null +++ b/third-party/fixups/miette/fixups.toml @@ -0,0 +1 @@ +cargo_env = true \ No newline at end of file diff --git a/third-party/fixups/mime_guess/fixups.toml b/third-party/fixups/mime_guess/fixups.toml new file mode 100644 index 00000000..6b1d53fa --- /dev/null +++ b/third-party/fixups/mime_guess/fixups.toml @@ -0,0 +1,3 @@ +# MIME_TYPES_GENERATED_PATH will be set in 'buckify.sh' script +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/nix/fixups.toml b/third-party/fixups/nix/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/nix/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/openssl-sys/fixups.toml b/third-party/fixups/openssl-sys/fixups.toml index f3f5d1fb..b8e9e39a 100644 --- a/third-party/fixups/openssl-sys/fixups.toml +++ b/third-party/fixups/openssl-sys/fixups.toml @@ -1,11 +1,5 @@ -# cargo_env = true -# cargo.toml links = "ring_core_0_17_8" -env = {"CARGO_MANIFEST_LINKS" = "ring_core_0_17_8", "RING_CORE_PREFIX" = "ring_core_0_17_8_"} -extra_srcs = [ - "src/data/alg-rsa-encryption.der", - "src/ec/**/*.der" -] - +cargo_env = true [[buildscript]] [buildscript.rustc_flags] -env = { CARGO_MANIFEST_LINKS = "ring_core_0_17_8", OPT_LEVEL = "3" } +env = { OPENSSL_LIB_DIR = "/usr/lib64", OPENSSL_INCLUDE_DIR = "/usr/include", OPT_LEVEL = "3"} +#env = { OPENSSL_LIB_DIR = "/opt/openssl-1.1.1g/lib", OPENSSL_INCLUDE_DIR = "/opt/openssl-1.1.1g/include", OPT_LEVEL = "3"} \ No newline at end of file diff --git a/third-party/fixups/p256/fixups.toml b/third-party/fixups/p256/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/p256/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/p384/fixups.toml b/third-party/fixups/p384/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/p384/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/p521/fixups.toml b/third-party/fixups/p521/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/p521/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/password-hash/fixups.toml b/third-party/fixups/password-hash/fixups.toml new file mode 100644 index 00000000..16018e02 --- /dev/null +++ b/third-party/fixups/password-hash/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] \ No newline at end of file diff --git a/third-party/fixups/pem-rfc7468/fixups.toml b/third-party/fixups/pem-rfc7468/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/pem-rfc7468/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/pkcs1/fixups.toml b/third-party/fixups/pkcs1/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/pkcs1/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/pkcs5/fixups.toml b/third-party/fixups/pkcs5/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/pkcs5/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/pkcs8/fixups.toml b/third-party/fixups/pkcs8/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/pkcs8/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/primeorder/fixups.toml b/third-party/fixups/primeorder/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/primeorder/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/proc-macro-error/fixups.toml b/third-party/fixups/proc-macro-error/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/proc-macro-error/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/proc-macro2/fixups.toml b/third-party/fixups/proc-macro2/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/proc-macro2/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/rfc6979/fixups.toml b/third-party/fixups/rfc6979/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/rfc6979/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/ron/fixups.toml b/third-party/fixups/ron/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/ron/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/rsa/fixups.toml b/third-party/fixups/rsa/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/rsa/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/russh/fixups.toml b/third-party/fixups/russh/fixups.toml new file mode 100644 index 00000000..177ef314 --- /dev/null +++ b/third-party/fixups/russh/fixups.toml @@ -0,0 +1 @@ +cargo_env = true \ No newline at end of file diff --git a/third-party/fixups/rust_decimal/fixups.toml b/third-party/fixups/rust_decimal/fixups.toml new file mode 100644 index 00000000..56c67c8f --- /dev/null +++ b/third-party/fixups/rust_decimal/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.gen_srcs] \ No newline at end of file diff --git a/third-party/fixups/rustls-platform-verifier/fixups.toml b/third-party/fixups/rustls-platform-verifier/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/rustls-platform-verifier/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/rusty_vault/fixups.toml b/third-party/fixups/rusty_vault/fixups.toml index 2a8540ec..a7164870 100644 --- a/third-party/fixups/rusty_vault/fixups.toml +++ b/third-party/fixups/rusty_vault/fixups.toml @@ -1,3 +1,4 @@ cargo_env = true -# [[buildscript]] -# [buildscript.rustc_flags] +env = { "CARGO_BIN_NAME" = "rvault" } +[[buildscript]] +[buildscript.rustc_flags] diff --git a/third-party/fixups/sec1/fixups.toml b/third-party/fixups/sec1/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/sec1/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/signature/fixups.toml b/third-party/fixups/signature/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/signature/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/spki/fixups.toml b/third-party/fixups/spki/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/spki/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/sqlx-postgres/fixups.toml b/third-party/fixups/sqlx-postgres/fixups.toml new file mode 100644 index 00000000..8c7900f1 --- /dev/null +++ b/third-party/fixups/sqlx-postgres/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "src/types/*.md" +] diff --git a/third-party/fixups/sqlx/fixups.toml b/third-party/fixups/sqlx/fixups.toml new file mode 100644 index 00000000..68a5beb4 --- /dev/null +++ b/third-party/fixups/sqlx/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "src/lib.md" +] diff --git a/third-party/fixups/ssh-cipher/fixups.toml b/third-party/fixups/ssh-cipher/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/ssh-cipher/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/ssh-encoding/fixups.toml b/third-party/fixups/ssh-encoding/fixups.toml new file mode 100644 index 00000000..57ac7799 --- /dev/null +++ b/third-party/fixups/ssh-encoding/fixups.toml @@ -0,0 +1,3 @@ +extra_srcs = [ + "README.md" +] diff --git a/third-party/fixups/syn/fixups.toml b/third-party/fixups/syn/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/syn/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/thiserror/fixups.toml b/third-party/fixups/thiserror/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/thiserror/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/unicase/fixups.toml b/third-party/fixups/unicase/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/unicase/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/winapi/fixups.toml b/third-party/fixups/winapi/fixups.toml new file mode 100644 index 00000000..dfbd57df --- /dev/null +++ b/third-party/fixups/winapi/fixups.toml @@ -0,0 +1,4 @@ +buildscript = [] + +[[platform_fixup.'cfg(target_os = "windows")'.buildscript]] +[platform_fixup.'cfg(target_os = "windows")'.buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/windows_x86_64_msvc/fixups.toml b/third-party/fixups/windows_x86_64_msvc/fixups.toml new file mode 100644 index 00000000..ba5f795c --- /dev/null +++ b/third-party/fixups/windows_x86_64_msvc/fixups.toml @@ -0,0 +1,6 @@ +buildscript = [] + +[[platform_fixup.'cfg(target_os = "windows")'.buildscript]] +[platform_fixup.'cfg(target_os = "windows")'.buildscript.prebuilt_cxx_library] +name = "windows.lib" +static_libs = ["lib/windows.lib"] \ No newline at end of file diff --git a/third-party/fixups/zerocopy/fixups.toml b/third-party/fixups/zerocopy/fixups.toml new file mode 100644 index 00000000..6fc3943f --- /dev/null +++ b/third-party/fixups/zerocopy/fixups.toml @@ -0,0 +1,3 @@ +cargo_env = true +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/zstd-safe/fixups.toml b/third-party/fixups/zstd-safe/fixups.toml new file mode 100644 index 00000000..bf469ba7 --- /dev/null +++ b/third-party/fixups/zstd-safe/fixups.toml @@ -0,0 +1,2 @@ +[[buildscript]] +[buildscript.rustc_flags] \ No newline at end of file diff --git a/third-party/fixups/zstd-sys/fixups.toml b/third-party/fixups/zstd-sys/fixups.toml new file mode 100644 index 00000000..382f6aba --- /dev/null +++ b/third-party/fixups/zstd-sys/fixups.toml @@ -0,0 +1,8 @@ +rustc_flags = [ + "-Lnative=$(location :zstd-sys-2.0.13+zstd.1.5.6-build-script-run[out_dir])", + "-lstatic=zstd", +] + +[[buildscript]] +[buildscript.gen_srcs] +env = { OPT_LEVEL = "3" } \ No newline at end of file diff --git a/third-party/run.sh b/third-party/run.sh index f77a88c1..3d6222bc 100755 --- a/third-party/run.sh +++ b/third-party/run.sh @@ -1,6 +1,9 @@ #!/usr/bin/bash set -e +# Change to the directory of the script, so that relative paths work +cd "$(dirname "${BASH_SOURCE[0]}")" + # You can treat the `third-party` as a regular Cargo project, for example, you can run `cargo build`. # This will resolve the new dependencies (creating or updating Cargo.lock) @@ -8,4 +11,6 @@ set -e reindeer --third-party-dir . vendor # Generate BUCK files for third-party dependencies -reindeer --third-party-dir . buckify \ No newline at end of file +#reindeer --third-party-dir . buckify + +./buckify.sh \ No newline at end of file diff --git a/vault/BUCK b/vault/BUCK index b6417218..4a6ba770 100644 --- a/vault/BUCK +++ b/vault/BUCK @@ -15,4 +15,7 @@ rust_library ( "//third-party:tokio", "//third-party:async-std", ], + visibility = [ + 'PUBLIC', + ], ) diff --git a/vault/src/lib.rs b/vault/src/lib.rs index af390856..bd618044 100644 --- a/vault/src/lib.rs +++ b/vault/src/lib.rs @@ -1,7 +1,3 @@ -use secp256k1::{Keypair, Secp256k1}; - -use crate::vault::{read_secret, write_secret}; - pub mod nostr; pub mod pgp; pub mod pki; @@ -11,6 +7,8 @@ pub mod vault; /// - return: `(Nostr ID, secret_key)` /// - You can get `Public Key` by just `base58::decode(nostr)` pub async fn init() -> (String, String) { + use crate::vault::{read_secret, write_secret}; + let mut id = read_secret("id").await.unwrap(); if id.is_none() { println!("Nostr ID not found, generating new one..."); @@ -39,9 +37,9 @@ pub async fn get_peerid() -> String { id } -pub async fn get_keypair() -> Keypair { +pub async fn get_keypair() -> secp256k1::Keypair { let (_, sk) = init().await; - let secp = Secp256k1::new(); + let secp = secp256k1::Secp256k1::new(); secp256k1::Keypair::from_seckey_str(&secp, &sk).unwrap() }