-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (37 loc) · 1.06 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
[workspace]
members = ["daemon", "proto", "cli", "server"]
resolver = "2"
[workspace.package]
authors = ["Benjamin Brittain <[email protected]>"]
description = "a remote backend for JJ"
version = "0.0.1"
[workspace.dependencies]
anyhow = "1"
assert_cmd = "2.0.8"
assert_matches = "1.5.0"
async-trait = "0.1.83"
blake3 = { version = "1.5.4", features = ["traits-preview"] }
clap = { version = "4.5.0", features = ["derive"] }
chrono = { version = "0.4.38", default-features = false, features = ["std", "clock"] }
digest = "0.10"
futures = "0.3.30"
itertools = "0.12.1"
jj-cli = "0.24"
jj-lib = {version = "0.24", default-features = true}
jj-lib-proc-macros = {version = "0.24", default-features = true}
nfsserve = "0.10"
parking_lot = "0.12.3"
prost = "0.12"
proto = { path = "./proto" }
rand = "0.8.5"
regex = "1.11.1"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.14"
toml = "0.8"
tonic = "0.11.0"
tonic-reflection = "0.11.0"
tracing = "0.1"
tracing-log = "0.2.0"
tracing-subscriber = "0.3"
zstd = "0.13.0"