aboutsummaryrefslogtreecommitdiff
path: root/crate_universe/Cargo.toml
blob: 2c71ef7fd2462da8e60ac45faf26faf0d47e7e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
members = [
    "tools/cross_installer",
    "tools/urls_generator",
]
exclude = ["test_data"]

[package]
name = "cargo-bazel"
version = "0.11.0"
authors = [
    "Andre Brisco - andre.brisco@protonmail.com",
]
categories = ["development-tools"]
description = "A collection of tools which use Cargo to generate build targets for Bazel"
edition = "2021"
keywords = ["bazel"]
license = "Apache-2.0"
repository = "https://github.com/bazelbuild/rules_rust"

[features]
cargo = []
default = ["cargo"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.75"
camino = "1.1.6"
cargo_metadata = "0.18.1"
cargo_toml = "0.17.1"
cargo-lock = "9.0.0"
cargo-platform = "0.1.4"
cfg-expr = "0.15.5"
clap = { version = "4.3.11", features = ["derive", "env"] }
crates-index = { version = "2.2.0", default-features = false, features = ["git"] }
hex = "0.4.3"
indoc = "2.0.4"
itertools = "0.12.0"
normpath = "1.1.1"
pathdiff = "0.2.1"
regex = "1.10.2"
semver = "1.0.20"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.108"
serde_starlark = "0.1.14"
sha2 = "0.10.8"
spdx = "0.10.3"
tempfile = "3.8.1"
tera = "1.19.1"
textwrap = "0.16.0"
toml = "0.8.10"
tracing = "0.1.40"
tracing-subscriber = "0.3.17"

[dev-dependencies]
maplit = "1.0.2"
spectral = "0.6.0"