-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
38 lines (31 loc) · 829 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
[package]
name = "wol-rs"
version = "1.1.0"
edition = "2021"
authors = ["fengyingcai <fengyc.work@gmail.com>"]
description = "Wake-on-LAN utility"
homepage = "https://github.com/fengyc/wol-rs"
repository = "https://github.com/fengyc/wol-rs"
readme = "README.md"
keywords = ["wol", "wake-on-lan"]
categories = ["network-programming"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "wol"
path = "src/lib.rs"
doc = true
[[bin]]
name = "wol"
path = "src/main.rs"
doc = false
required-features = ["bin"]
[features]
bin = ["dep:clap"]
[dependencies]
clap = { version = "4.5.20", features = ["derive"], optional = true }
eui48 = { version = "1.1.0", features = ["disp_hexstring"] }
[profile.release]
strip = true
[dev-dependencies]
rstest = "0.23.0"