-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
56 lines (46 loc) · 1.03 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
[package]
name = "steno"
version = "0.4.2-dev"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/oxidecomputer/steno"
description = "distributed saga implementation"
[profile.dev]
#panic = "abort"
[dependencies]
anyhow = "1.0.95"
async-trait = "0.1.85"
futures = "0.3.31"
newtype_derive = "0.1.6"
serde_json = "1.0"
thiserror = "2.0"
lazy_static = "1.5.0"
[dependencies.petgraph]
version = "0.7.1"
features = [ "serde-1" ]
[dependencies.chrono]
version = "0.4"
features = [ "clock", "serde", "std" ]
default-features = false
[dependencies.schemars]
version = "0.8.21"
features = [ "chrono", "uuid1" ]
[dependencies.serde]
version = "1.0"
features = [ "derive", "rc" ]
[dependencies.slog]
version = "2.7"
features = [ "max_level_trace", "release_max_level_debug" ]
[dependencies.tokio]
version = "1"
features = [ "full" ]
[dependencies.uuid]
version = "1.11.1"
features = [ "serde", "v4" ]
[dev-dependencies]
expectorate = "1.0"
slog-async = "2.8"
slog-term = "2.9"
structopt = "0.3"
subprocess = "0.2.6"
proptest = "1.6.0"