forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1022 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1022 Bytes
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
[package]
name = "mz-orchestrator-process"
description = "Service orchestration via local processes for development."
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
anyhow = "1.0.66"
async-stream = "0.3.3"
async-trait = "0.1.68"
chrono = { version = "0.4.23", default_features = false, features = ["clock"] }
futures = "0.3.25"
hex = "0.4.3"
itertools = "0.10.5"
libc = "0.2.138"
maplit = "1.0.2"
mz-orchestrator = { path = "../orchestrator" }
mz-ore = { path = "../ore", features = ["async"] }
mz-pid-file = { path = "../pid-file" }
mz-repr = { path = "../repr" }
mz-secrets = { path = "../secrets" }
nix = "0.26.1"
serde = "1.0.147"
serde_json = "1.0.109"
scopeguard = "1.1.0"
sha1 = "0.10.5"
sysinfo = "0.27.2"
tokio = { version = "1.32.0", features = [ "fs", "process", "time" ] }
tracing = "0.1.37"
workspace-hack = { version = "0.0.0", path = "../workspace-hack" }
[package.metadata.cargo-udeps.ignore]
normal = ["workspace-hack"]