-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
71 lines (58 loc) · 1.39 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "mymy"
version = "0.3.0"
edition = "2021"
authors = ["Théo Crevon <[email protected]>"]
description = "Access the most common information about your system using a single command"
readme = "README.md"
homepage = "https://github.com/oleiade/mymy"
repository = "https://github.com/oleiade/mymy"
keywords = ["cli", "network", "time"]
categories = ["command-line-utilities"]
license-file = "LICENSE"
[profile.release]
debug = 1
incremental = true
lto = "off"
[[bin]]
name = "my"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.70"
colored = "2.0.0"
get_if_addrs = "0.5.3"
human-panic = "1.1.4"
itertools = "0.10.5"
local-ip-address = "0.5.1"
rsntp = "3.0.2"
serde_json = "1.0.95"
sysinfo = "0.28.4"
[dependencies.chrono]
version = "0.4.24"
default-features = false
[dependencies.clap]
version = "4.2.1"
features = ["derive"]
[dependencies.serde]
version = "1.0.159"
features = ["serde_derive"]
default-features = false
[dependencies.tokio]
version = "1.27.0"
default-features = false
features = ["macros"]
[dependencies.trust-dns-resolver]
version = "0.22.0"
features = ["tokio-runtime", "system-config"]
default-features = false
[dependencies.whoami]
version = "1.4.0"
default-features = false
[package.metadata.deb]
section = "main"
[package.metadata.rpm]
package = "mymy"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
mymy = { path = "/usr/bin/mymy" }