-
Notifications
You must be signed in to change notification settings - Fork 109
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
95 changed files
with
561 additions
and
407 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Large diffs are not rendered by default.
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
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_test", | ||
) | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"unencumbered", # Unlicense from expression "Unlicense OR MIT" | ||
]) | ||
|
||
# Generated Targets | ||
|
||
# Unsupported target "bench" with type "bench" omitted | ||
|
||
rust_library( | ||
name = "byteorder", | ||
srcs = glob(["**/*.rs"]), | ||
crate_features = [ | ||
"default", | ||
"std", | ||
], | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
data = [], | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "1.4.2", | ||
# buildifier: leave-alone | ||
deps = [ | ||
], | ||
) |
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,83 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_test", | ||
) | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # MIT from expression "MIT" | ||
]) | ||
|
||
# Generated Targets | ||
|
||
# Unsupported target "buf" with type "bench" omitted | ||
|
||
# Unsupported target "bytes" with type "bench" omitted | ||
|
||
# Unsupported target "bytes_mut" with type "bench" omitted | ||
|
||
rust_library( | ||
name = "bytes", | ||
srcs = glob(["**/*.rs"]), | ||
crate_features = [ | ||
"default", | ||
"std", | ||
], | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
data = [], | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "1.0.0", | ||
# buildifier: leave-alone | ||
deps = [ | ||
], | ||
) | ||
|
||
# Unsupported target "test_buf" with type "test" omitted | ||
|
||
# Unsupported target "test_buf_mut" with type "test" omitted | ||
|
||
# Unsupported target "test_bytes" with type "test" omitted | ||
|
||
# Unsupported target "test_bytes_odd_alloc" with type "test" omitted | ||
|
||
# Unsupported target "test_bytes_vec_alloc" with type "test" omitted | ||
|
||
# Unsupported target "test_chain" with type "test" omitted | ||
|
||
# Unsupported target "test_debug" with type "test" omitted | ||
|
||
# Unsupported target "test_iter" with type "test" omitted | ||
|
||
# Unsupported target "test_reader" with type "test" omitted | ||
|
||
# Unsupported target "test_serde" with type "test" omitted | ||
|
||
# Unsupported target "test_take" with type "test" omitted |
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,59 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_test", | ||
) | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # MIT from expression "MIT OR Apache-2.0" | ||
]) | ||
|
||
# Generated Targets | ||
|
||
# Unsupported target "rainbow" with type "example" omitted | ||
|
||
# Unsupported target "thread" with type "example" omitted | ||
|
||
# Unsupported target "threadpool" with type "example" omitted | ||
|
||
rust_library( | ||
name = "drop_guard", | ||
srcs = glob(["**/*.rs"]), | ||
crate_features = [ | ||
], | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
data = [], | ||
edition = "2015", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "0.2.1", | ||
# buildifier: leave-alone | ||
deps = [ | ||
], | ||
) |
Oops, something went wrong.