-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
47 lines (40 loc) · 1.22 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
[package]
name = "ipmi-rs"
version = "0.3.1"
edition = "2021"
authors = [ "Johannes Cornelis Draaijer <[email protected]>" ]
license = "MIT OR Apache-2.0"
keywords = [ "ipmi", "sysadmin", "bmc" ]
categories = [ "parser-implementations", "network-programming" ]
description = "A pure rust implementation of the IPMI spec"
repository = "https://github.com/datdenkikniet/ipmi-rs"
documentation = "https://docs.rs/ipmi-rs/latest"
[dependencies]
log = "0.4"
nonmax = "0.5"
bitflags = "1.3"
time = { version = "0.3", optional = true, default-features = false, features = [ "formatting" ] }
parking_lot = { version = "0.12", optional = true }
md5 = { version = "0.7", optional = true }
# For unix-file IPMI
nix = { version = "0.26", default-features = false, features = [ "ioctl" ], optional = true }
# For RMCP+
hmac = "0.12.1"
sha1 = "0.10.6"
rand = "0.8.5"
aes = "0.8.4"
cbc = "0.1.2"
getrandom = "0.2.12"
[features]
default = [ "time", "unix-file", "log-to-file", "md5" ]
log-to-file = [ "parking_lot" ]
# Connection features
unix-file = [ "nix" ]
[dev-dependencies]
pretty_env_logger = "0.4"
indicatif = "0.17"
clap = { version = "4.3", features = [ "derive" ]}
hex = "0.4.3"
[[example]]
name = "get-info"
required-features = [ "unix-file" ]