-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add experimental support for generating from cargo
- Loading branch information
Showing
142 changed files
with
2,006 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//3rdparty:crates_vendor | ||
############################################################################### | ||
|
||
load("@rules_rust//rust:defs.bzl", "rust_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
# licenses([ | ||
# "TODO", # Apache-2.0 OR MIT | ||
# ]) | ||
|
||
rust_library( | ||
name = "cargo_toml", | ||
srcs = glob(["**/*.rs"]), | ||
compile_data = glob( | ||
include = ["**"], | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_root = "src/cargo_toml.rs", | ||
edition = "2021", | ||
rustc_flags = ["--cap-lints=allow"], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=cargo_toml", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
target_compatible_with = select({ | ||
"@rules_rust//rust/platform:aarch64-apple-darwin": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [], | ||
"@rules_rust//rust/platform:aarch64-fuchsia": [], | ||
"@rules_rust//rust/platform:aarch64-linux-android": [], | ||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:armv7-linux-androideabi": [], | ||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:i686-apple-darwin": [], | ||
"@rules_rust//rust/platform:i686-linux-android": [], | ||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:i686-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:thumbv7em-none-eabi": [], | ||
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], | ||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [], | ||
"@rules_rust//rust/platform:wasm32-wasi": [], | ||
"@rules_rust//rust/platform:x86_64-apple-darwin": [], | ||
"@rules_rust//rust/platform:x86_64-apple-ios": [], | ||
"@rules_rust//rust/platform:x86_64-fuchsia": [], | ||
"@rules_rust//rust/platform:x86_64-linux-android": [], | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-none": [], | ||
"//conditions:default": ["@platforms//:incompatible"], | ||
}), | ||
version = "0.16.3", | ||
deps = [ | ||
"@crates_vendor__serde-1.0.156//:serde", | ||
"@crates_vendor__toml-0.8.2//:toml", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//3rdparty:crates_vendor | ||
############################################################################### | ||
|
||
load("@rules_rust//rust:defs.bzl", "rust_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
# licenses([ | ||
# "TODO", # Apache-2.0 OR MIT | ||
# ]) | ||
|
||
rust_library( | ||
name = "equivalent", | ||
srcs = glob(["**/*.rs"]), | ||
compile_data = glob( | ||
include = ["**"], | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_root = "src/lib.rs", | ||
edition = "2015", | ||
rustc_flags = ["--cap-lints=allow"], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=equivalent", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
target_compatible_with = select({ | ||
"@rules_rust//rust/platform:aarch64-apple-darwin": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [], | ||
"@rules_rust//rust/platform:aarch64-fuchsia": [], | ||
"@rules_rust//rust/platform:aarch64-linux-android": [], | ||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:armv7-linux-androideabi": [], | ||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:i686-apple-darwin": [], | ||
"@rules_rust//rust/platform:i686-linux-android": [], | ||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:i686-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:thumbv7em-none-eabi": [], | ||
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], | ||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [], | ||
"@rules_rust//rust/platform:wasm32-wasi": [], | ||
"@rules_rust//rust/platform:x86_64-apple-darwin": [], | ||
"@rules_rust//rust/platform:x86_64-apple-ios": [], | ||
"@rules_rust//rust/platform:x86_64-fuchsia": [], | ||
"@rules_rust//rust/platform:x86_64-linux-android": [], | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-none": [], | ||
"//conditions:default": ["@platforms//:incompatible"], | ||
}), | ||
version = "1.0.1", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//3rdparty:crates_vendor | ||
############################################################################### | ||
|
||
load("@rules_rust//rust:defs.bzl", "rust_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
# licenses([ | ||
# "TODO", # MIT OR Apache-2.0 | ||
# ]) | ||
|
||
rust_library( | ||
name = "hashbrown", | ||
srcs = glob(["**/*.rs"]), | ||
compile_data = glob( | ||
include = ["**"], | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_features = [ | ||
"raw", | ||
], | ||
crate_root = "src/lib.rs", | ||
edition = "2021", | ||
rustc_flags = ["--cap-lints=allow"], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=hashbrown", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
target_compatible_with = select({ | ||
"@rules_rust//rust/platform:aarch64-apple-darwin": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [], | ||
"@rules_rust//rust/platform:aarch64-fuchsia": [], | ||
"@rules_rust//rust/platform:aarch64-linux-android": [], | ||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:armv7-linux-androideabi": [], | ||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:i686-apple-darwin": [], | ||
"@rules_rust//rust/platform:i686-linux-android": [], | ||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:i686-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:thumbv7em-none-eabi": [], | ||
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], | ||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [], | ||
"@rules_rust//rust/platform:wasm32-wasi": [], | ||
"@rules_rust//rust/platform:x86_64-apple-darwin": [], | ||
"@rules_rust//rust/platform:x86_64-apple-ios": [], | ||
"@rules_rust//rust/platform:x86_64-fuchsia": [], | ||
"@rules_rust//rust/platform:x86_64-linux-android": [], | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-none": [], | ||
"//conditions:default": ["@platforms//:incompatible"], | ||
}), | ||
version = "0.14.1", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//3rdparty:crates_vendor | ||
############################################################################### | ||
|
||
load("@rules_rust//rust:defs.bzl", "rust_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
# licenses([ | ||
# "TODO", # Apache-2.0 OR MIT | ||
# ]) | ||
|
||
rust_library( | ||
name = "indexmap", | ||
srcs = glob(["**/*.rs"]), | ||
compile_data = glob( | ||
include = ["**"], | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_features = [ | ||
"default", | ||
"std", | ||
], | ||
crate_root = "src/lib.rs", | ||
edition = "2021", | ||
rustc_flags = ["--cap-lints=allow"], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=indexmap", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
target_compatible_with = select({ | ||
"@rules_rust//rust/platform:aarch64-apple-darwin": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios": [], | ||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [], | ||
"@rules_rust//rust/platform:aarch64-fuchsia": [], | ||
"@rules_rust//rust/platform:aarch64-linux-android": [], | ||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:armv7-linux-androideabi": [], | ||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], | ||
"@rules_rust//rust/platform:i686-apple-darwin": [], | ||
"@rules_rust//rust/platform:i686-linux-android": [], | ||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:i686-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], | ||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:thumbv7em-none-eabi": [], | ||
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], | ||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [], | ||
"@rules_rust//rust/platform:wasm32-wasi": [], | ||
"@rules_rust//rust/platform:x86_64-apple-darwin": [], | ||
"@rules_rust//rust/platform:x86_64-apple-ios": [], | ||
"@rules_rust//rust/platform:x86_64-fuchsia": [], | ||
"@rules_rust//rust/platform:x86_64-linux-android": [], | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], | ||
"@rules_rust//rust/platform:x86_64-unknown-none": [], | ||
"//conditions:default": ["@platforms//:incompatible"], | ||
}), | ||
version = "2.0.2", | ||
deps = [ | ||
"@crates_vendor__equivalent-1.0.1//:equivalent", | ||
"@crates_vendor__hashbrown-0.14.1//:hashbrown", | ||
], | ||
) |
Oops, something went wrong.