xref: /aosp_15_r20/external/bazelbuild-rules_rust/crate_universe/Cargo.toml (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifan[workspace]
2*d4726bddSHONG Yifanmembers = ["tools/cross_installer", "tools/urls_generator"]
3*d4726bddSHONG Yifanexclude = ["test_data"]
4*d4726bddSHONG Yifan
5*d4726bddSHONG Yifan[package]
6*d4726bddSHONG Yifanname = "cargo-bazel"
7*d4726bddSHONG Yifanversion = "0.14.0"
8*d4726bddSHONG Yifanauthors = ["Andre Brisco - [email protected]"]
9*d4726bddSHONG Yifancategories = ["development-tools"]
10*d4726bddSHONG Yifandescription = "A collection of tools which use Cargo to generate build targets for Bazel"
11*d4726bddSHONG Yifanedition = "2021"
12*d4726bddSHONG Yifankeywords = ["bazel"]
13*d4726bddSHONG Yifanlicense = "Apache-2.0"
14*d4726bddSHONG Yifanrepository = "https://github.com/bazelbuild/rules_rust"
15*d4726bddSHONG Yifan
16*d4726bddSHONG Yifan[features]
17*d4726bddSHONG Yifancargo = []
18*d4726bddSHONG Yifandefault = ["cargo"]
19*d4726bddSHONG Yifan
20*d4726bddSHONG Yifan# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
21*d4726bddSHONG Yifan
22*d4726bddSHONG Yifan[dependencies]
23*d4726bddSHONG Yifananyhow = "1.0.75"
24*d4726bddSHONG Yifancamino = "1.1.6"
25*d4726bddSHONG Yifancargo_metadata = "0.18.1"
26*d4726bddSHONG Yifancargo_toml = "0.19.2"
27*d4726bddSHONG Yifancargo-lock = "9.0.0"
28*d4726bddSHONG Yifancargo-platform = "0.1.4"
29*d4726bddSHONG Yifancfg-expr = "0.15.5"
30*d4726bddSHONG Yifanclap = { version = "4.3.11", features = ["derive", "env"] }
31*d4726bddSHONG Yifancrates-index = { version = "2.2.0", default-features = false, features = [
32*d4726bddSHONG Yifan    "git",
33*d4726bddSHONG Yifan] }
34*d4726bddSHONG Yifanhex = "0.4.3"
35*d4726bddSHONG Yifanindoc = "2.0.4"
36*d4726bddSHONG Yifanitertools = "0.12.0"
37*d4726bddSHONG Yifannormpath = "1.1.1"
38*d4726bddSHONG Yifanonce_cell = "1.19.0"
39*d4726bddSHONG Yifanpathdiff = "0.2.1"
40*d4726bddSHONG Yifanregex = "1.10.2"
41*d4726bddSHONG Yifansemver = "1.0.20"
42*d4726bddSHONG Yifanserde = { version = "1.0.190", features = ["derive"] }
43*d4726bddSHONG Yifanserde_json = "1.0.108"
44*d4726bddSHONG Yifanserde_starlark = "0.1.14"
45*d4726bddSHONG Yifansha2 = "0.10.8"
46*d4726bddSHONG Yifanspdx = "0.10.3"
47*d4726bddSHONG Yifantempfile = "3.8.1"
48*d4726bddSHONG Yifantera = "1.19.1"
49*d4726bddSHONG Yifantextwrap = "0.16.0"
50*d4726bddSHONG Yifantoml = "0.8.10"
51*d4726bddSHONG Yifantracing = "0.1.40"
52*d4726bddSHONG Yifantracing-subscriber = "0.3.17"
53*d4726bddSHONG Yifanurl = "2.5.2"
54*d4726bddSHONG Yifan
55*d4726bddSHONG Yifan[dev-dependencies]
56*d4726bddSHONG Yifanmaplit = "1.0.2"
57*d4726bddSHONG Yifanspectral = "0.6.0"
58