-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathCargo.toml
33 lines (29 loc) · 910 Bytes
/
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
[package]
name = "pegboard"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
[features]
default = ["workflows", "ops"]
workflows = ["chirp"]
ops = ["chirp"]
chirp = ["chirp-workflow", "sqlx", "nix", "server-spec"]
[dependencies]
chirp-workflow = { workspace = true, optional = true }
lazy_static = "1.4"
nix = { version = "0.27", default-features = false, features = ["user", "signal"], optional = true }
rivet-metrics.workspace = true
schemars = { version = "0.8.21", features = ["url", "uuid1"] }
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.132"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1.0"
util.workspace = true
uuid = "1.11.0"
rivet-config.workspace = true
server-spec = { workspace = true, optional = true }
[dependencies.sqlx]
optional = true
workspace = true
features = [ "json", "ipnetwork" ]