-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
101 lines (86 loc) · 2.11 KB
/
Cargo.toml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
authors = ["Ian O'Connell <ianoc@ianoc.net>"]
edition = "2021"
license = "Apache-2.0"
name = "bzl-remote-core"
version = "0.1.0"
build = "build.rs"
[[bin]]
name = "cache-server"
path = "src/binaries/cache_server/app.rs"
[[bin]]
name = "dump-cache-data"
path = "src/binaries/dump_cache_data/app.rs"
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.85"
byteorder = "1.5.0"
bytes = "1.9.0"
clap = { version = "4.5.24", features = ["derive", "env"] }
base64 = "0.22.1"
lazy_static = "1.5.0"
openssl = { version = "0.10.68", features = ["vendored"] }
tracing = "0.1.41"
tracing-attributes = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["tracing-log", "env-filter"] }
prost = "0.12.6"
prost-types = "0.13.4"
rand = "0.8.5"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_derive = "1.0.152"
toml = "0.8.19"
thiserror = "2.0.9"
libc = "0.2.169"
crossbeam-channel = { version = "0.5.14" }
tokio-util = { version = "0.7.13", features = ["compat"] }
sha2 = "0.10.8"
flume = { version = "0.11.1" }
dashmap = { version = "6.1.0" }
time = "0.3.37"
tempfile = { version = "3.14.0" }
anyhow = "1.0.95"
tower = { version = "0.4" }
log = "0.4.22"
hyper = "0.14.27"
hyper-tls = "0.5.0"
sled = "0.34.7"
memmap2 = "0.9.5"
aws-sdk-s3 = "0.34.0"
aws-config = "0.56.1"
aws-smithy-http = "0.56.1"
redis = { version = "0.25.4", features = ["tokio-comp", "connection-manager"] }
urlencoding = "2.1.3"
http = "0.2.11"
http-body = "0.4.5"
sysinfo = "0.33.1"
[build-dependencies]
vergen = { version = "8.3.2", features = [ "build", "git", "gitcl" ]}
anyhow = "1.0.95"
[dependencies.bazelfe-protos]
path = "../bazelfe-protos"
[dependencies.futures]
default-features = false
features = ["alloc"]
version = "0.3.31"
[dependencies.tokio]
features = ["full"]
version = "1.42.0"
[dependencies.tokio-stream]
features = ["net"]
version = "0.1.17"
[dependencies.tonic]
features = ["tls"]
version = "0.10.2"
[dev-dependencies]
once_cell = "1.20.2"
pinky-swear = "6.2.0"
tower = "0.4.13"
tempfile = "3.14.0"
[features]
default = []
dev-binaries = []
[lib]
name = "bzl_remote_core"
path = "src/lib.rs"