1rust_test {
2name: "either_test_src_lib",
3host_supported: true,
4crate_name: "either",
5cargo_env_compat: true,
6cargo_pkg_version: "1.9.0",
7crate_root: "src/lib.rs",
8test_suites: ["general-tests"],
9auto_gen_config: true,
10test_options: {
11unit_test: true,
12},
13edition: "2018",
14features: ["default", "use_std"],
15rustlibs: ["libserde_json"],
16}
17
18rust_library {
19name: "libeither",
20host_supported: true,
21crate_name: "either",
22cargo_env_compat: true,
23cargo_pkg_version: "1.9.0",
24crate_root: "src/lib.rs",
25edition: "2018",
26features: ["default", "use_std"],
27apex_available: ["//apex_available:platform", "//apex_available:anyapex"],
28product_available: true,
29vendor_available: true,
30}
31
32