-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
197 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,44 @@ | ||
""" | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # "MIT" | ||
]) | ||
|
||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_library", | ||
"rust_binary", | ||
"rust_test", | ||
) | ||
|
||
|
||
# Unsupported target "atty" with type "example" omitted | ||
|
||
rust_library( | ||
name = "atty", | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
edition = "2015", | ||
srcs = glob(["**/*.rs"]), | ||
deps = [ | ||
"@raze__libc__0_2_70//:libc", | ||
], | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
version = "0.2.14", | ||
crate_features = [ | ||
], | ||
) | ||
|
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,44 @@ | ||
""" | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # "MIT,Apache-2.0" | ||
]) | ||
|
||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_library", | ||
"rust_binary", | ||
"rust_test", | ||
) | ||
|
||
|
||
|
||
rust_library( | ||
name = "hermit_abi", | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
edition = "2015", | ||
srcs = glob(["**/*.rs"]), | ||
deps = [ | ||
"@raze__libc__0_2_70//:libc", | ||
], | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
version = "0.1.12", | ||
crate_features = [ | ||
"default", | ||
], | ||
) | ||
|
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,44 @@ | ||
""" | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"restricted", # "MIT OR Apache-2.0" | ||
]) | ||
|
||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_library", | ||
"rust_binary", | ||
"rust_test", | ||
) | ||
|
||
|
||
# Unsupported target "build-script-build" with type "custom-build" omitted | ||
# Unsupported target "const_fn" with type "test" omitted | ||
|
||
rust_library( | ||
name = "libc", | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
edition = "2015", | ||
srcs = glob(["**/*.rs"]), | ||
deps = [ | ||
], | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
version = "0.2.70", | ||
crate_features = [ | ||
], | ||
) | ||
|
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