-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (32 loc) · 879 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
34
35
36
37
38
39
40
41
42
43
[package]
name = "ifcfg-devname"
version = "1.1.1"
edition = "2021"
license = "GPL-3.0"
authors = ["Jan Macku <[email protected]>"]
repository = "https://github.com/fedora-sysv/ifcfg-devname"
exclude = ["./.codecov.yml", "./mergify.yml", "/target/*", "/.github/*"]
keywords = ["ifcfg", "udev"]
categories = []
description = "Udev helper utility that provides network interface naming"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mac_address = "1.1.7"
# globbing
glob = "0.3.1"
# parsing
regex = "1.10.6"
lazy_static = "1.5.0"
# logging
syslog = "^6.1.0"
log = "0.4.22"
stderrlog = "0.6.0"
# integration testing
[dev-dependencies]
# command exevution
assert_cmd = "2.0.16"
predicates = "3.1.2"
# JSON
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.107"