-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[rust] Initial version of Selenium Manager (1.0.0-M1) (#11078)
* Initial version of Selenium Manager (1.0.0-M1) * Hook rust into the Bazel build * Document using Bazel for building webdriver manager * Rename binary name to selenium-manager in bazel setup Co-authored-by: Simon Mavi Stewart <[email protected]>
- Loading branch information
1 parent
c5f457e
commit dcdff48
Showing
15 changed files
with
13,808 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
load("@crates//:defs.bzl", "all_crate_deps") | ||
load("@rules_rust//rust:defs.bzl", "rust_binary") | ||
|
||
rust_binary( | ||
name = "selenium-manager", | ||
srcs = glob(["src/**/*.rs"]), | ||
edition = "2018", | ||
deps = all_crate_deps(normal = True), | ||
) |
Oops, something went wrong.