-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
35 lines (33 loc) · 1.09 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
[package]
name = "drbd-reactor"
version = "1.7.0"
authors = ["Roland Kammerer <roland.kammerer@linbit.com>", "Moritz Wanzenböck <moritz.wanzenboeck@linbit.com>"]
edition = "2018"
description = "Reacts to DRBD events via plugins."
license = "Apache-2.0"
readme = "README.md"
rust-version = "1.70"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# we need to be careful here, our baseline has to be the last Ubuntu LTS before the current one
# e.g., if Noble is out, we also have to build for Jammy (but no longer for Focal or older).
# drbd-reactor
serde = { version = "1", features = ["derive"] }
toml = ">= 0.5"
structopt = { version = ">= 0.3", default-features = false }
anyhow = "1"
log = { version = ">= 0.4", features = ["serde"] }
fern = ">= 0.6"
regex = "1"
libc = ">= 0.2"
signal-hook = ">= 0.3"
tinytemplate = "1"
serde_json = "1"
shell-words = "1"
crossbeam-channel = ">= 0.4"
atty = ">= 0.2"
agentx = ">= 0.1"
# drbd-reactorctl
clap = "2" # jammy has 2, noble has 2 and 3
colored = ">= 1.6" # jammy has 1.6, noble 2.1
tempfile = "3"