forked from restatedev/restate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (89 loc) · 3.1 KB
/
Copy pathCargo.toml
File metadata and controls
97 lines (89 loc) · 3.1 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
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
[package]
name = "restatectl"
version.workspace = true
authors.workspace = true
description = "Restate cluster administration tools"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
publish = false
[package.metadata.dist]
dist = true
formula = "restatectl"
[features]
default = ["no-trace-logging"]
no-trace-logging = ["tracing/max_level_trace", "tracing/release_max_level_debug"]
dump-local-log = [
"restate-metadata-server",
"restate-rocksdb",
"restate-bifrost",
"restate-wal-protocol",
"rlimit",
"futures-util",
"tempfile",
]
[dependencies]
restate-workspace-hack = { workspace = true }
restate-cli-util = { workspace = true }
restate-clock = { workspace = true, features = ["jiff"] }
restate-core = { workspace = true }
restate-futures-util = { workspace = true }
restate-log-server-grpc = { workspace = true, features = ["grpc-client"] }
restate-metadata-server-grpc = { workspace = true, features = ["grpc-client"] }
restate-metadata-store = { workspace = true, features = ["grpc-client"] }
restate-time-util = { workspace = true, features = ["serde"] }
restate-types = { workspace = true, features = ["clap"] }
# only used for dump-log which is gated out by default
restate-bifrost = { workspace = true, optional = true, features = ["local-loglet", "replicated-loglet"] }
restate-metadata-server = { workspace = true, optional = true }
restate-rocksdb = { workspace = true, optional = true }
restate-wal-protocol = { workspace = true, optional = true }
rlimit = { workspace = true, optional = true }
futures-util = { workspace = true, optional = true }
tempfile = { workspace = true, optional = true }
anyhow = { workspace = true }
assert2 = {workspace = true }
arrow = { workspace = true, features = ["ipc", "json"] }
bytes = { workspace = true }
bytesize = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true, features = ["derive", "env", "wrap_help", "color", "std", "suggestions", "usage"] }
clap_complete = { workspace = true }
clap-stdin = "0.6.0"
cling = { workspace = true }
dirs = { version = "5.0" }
crossterm = { workspace = true }
ctrlc = { version = "3.4" }
diff = "0.1.13"
futures = { workspace = true }
itertools = { workspace = true }
json-patch = "2.0.0"
http = { workspace = true }
humantime = { workspace = true }
prost-types = { workspace = true }
rand = { workspace = true }
rustls = { workspace = true, features = ["aws-lc-rs"]}
serde = { workspace = true }
serde_json = { workspace = true }
test-log = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-rustls = { workspace = true }
toml = { workspace = true }
tonic = { workspace = true, features = ["transport", "zstd", "gzip"] }
hyper-util = { workspace = true }
tower = { workspace = true }
tracing = { workspace = true }
[build-dependencies]
vergen = { workspace = true, default-features = false, features = [
"build",
"git",
"gitcl",
"cargo",
] }
[dev-dependencies]
restate-local-cluster-runner = { workspace = true }
googletest = { workspace = true }
tempfile = { workspace = true }