-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 757 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 757 Bytes
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 = "randy"
version = "1.6.10"
authors = ["Ian Page Hands <[email protected]>"]
edition = "2018"
description = "Conky like app in Rust"
homepage = "https://github.com/iphands/randy"
repository = "https://github.com/iphands/randy"
readme = "README.md"
license = "GPL-3.0"
exclude = [ "/assets/*", "/scripts/*" ]
[profile.dev]
opt-level = "s"
debug = 0
[profile.release]
opt-level = 3
codegen-units = 1
panic = 'abort'
lto = true
overflow-checks = false
[features]
runtime_bench = []
timings = []
packaged = []
nvidia = [ "nvml-wrapper" ]
[dependencies]
glib = "0.10"
gio = "0.9"
gtk = "0.9"
yaml-rust = "0.4"
libc = "0.2"
lazy_static = "1.4"
sensors = { version = "0.2", optional = true }
nvml-wrapper = { version = "0.6", optional = true }