-
Notifications
You must be signed in to change notification settings - Fork 122
/
Cargo.toml
46 lines (40 loc) · 1.31 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
# This file is automatically generated from `tools/build_cargo_manifest.py`.
# If you want to add a dependency add it to `tools/cargo_shared.bzl`
# then run `python tools/build_cargo_manifest.py`.
# Do not edit this file directly.
[workspace]
resolver = "2"
[package]
name = "nativelink"
version = "0.0.0"
edition = "2021"
[profile.release]
lto = true
opt-level = 3
[[bin]]
name = "nativelink"
[dependencies]
nativelink-error = { path = "nativelink-error" }
nativelink-proto = { path = "nativelink-proto" }
nativelink-config = { path = "nativelink-config" }
nativelink-scheduler = { path = "nativelink-scheduler" }
nativelink-service = { path = "nativelink-service" }
nativelink-store = { path = "nativelink-store" }
nativelink-util = { path = "nativelink-util" }
nativelink-worker = { path = "nativelink-worker" }
async-lock = "3.2.0"
axum = "0.6.20"
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3.29"
hyper = { version = "0.14.27" }
parking_lot = "0.12.1"
prometheus-client = "0.21.2"
rustls-pemfile = "2.0.0"
scopeguard = "1.2.0"
serde_json5 = "0.1.0"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "signal"] }
tokio-rustls = "0.25.0"
tonic = { version = "0.10.2", features = ["gzip"] }
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }