-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (57 loc) · 2.21 KB
/
Cargo.toml
File metadata and controls
64 lines (57 loc) · 2.21 KB
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
59
60
61
62
63
64
# @generated by autocargo from //common/rust/tools/reindeer:reindeer
[package]
name = "reindeer"
version = "0.0.0"
authors = ["Facebook"]
edition = "2024"
repository = "https://github.com/facebookincubator/reindeer"
license = "MIT"
[dependencies]
anyhow = "1.0.102"
cached = { version = "0.55.1", features = ["async", "disk_store"] }
cargo = "0.92"
cargo_toml = "0.22.3"
clap = { version = "4.5.42", features = ["derive", "env", "string", "unicode", "wrap_help"] }
dunce = "1.0.5"
dyn-clone = "1.0.20"
env_logger = { version = "0.11.9", features = ["color"] }
erased-serde = "0.4.9"
fnv = "1.0"
foldhash = "0.1.5"
globset = { version = "0.4.13", features = ["serde1"] }
ignore = "0.4"
indexmap = { version = "2.13.0", features = ["arbitrary", "rayon", "serde"] }
indoc = "2.0.2"
itertools = "0.14.0"
log = { version = "0.4.29", features = ["kv_unstable", "kv_unstable_std"] }
measure_time = "0.9"
monostate = "1"
nom = "8"
nom-language = "0.1"
proc-macro2 = { version = "1.0.106", features = ["span-locations"] }
semver = { version = "1.0.26", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
serde_starlark = "0.1.19"
serde_with = { version = "3.17.0", features = ["hex", "json"] }
spdx = "0.13.4"
strum = { version = "0.27.1", features = ["derive"] }
syn = { version = "2.0.117", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
termcolor = "1.0"
toml = { version = "0.9.12", features = ["preserve_order"] }
unicode-ident = "1.0.24"
url = "2.5.8"
walkdir = "2.3"
[dev-dependencies]
tempfile = "3.26.0"
[patch.crates-io]
cxx = { git = "https://github.com/facebookexperimental/cxx.git", rev = "870ebbecad0f6be394d4f9fb9bd62b551662651a" }
cxx-build = { git = "https://github.com/facebookexperimental/cxx.git", rev = "870ebbecad0f6be394d4f9fb9bd62b551662651a" }
displaydoc = { git = "https://github.com/yaahc/displaydoc", rev = "7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0" }
[workspace]
members = ["."]
[workspace.package]
license = "MIT"
repository = "https://github.com/facebookincubator/reindeer"
[lints]
rust = { unexpected_cfgs = { check-cfg = ["cfg(fbcode_build)"], level = "warn" } }