forked from arcnmx/nvoclock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 863 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
[package]
name = "nvoclock"
version = "0.1.0"
authors = ["arcnmx"]
edition = "2021"
description = "NVIDIA overclocking CLI"
keywords = ["nvidia", "gtx", "gpu", "nvapi", "overclock"]
documentation = "http://github.com/arcnmx/nvoclock"
repository = "https://github.com/arcnmx/nvoclock"
readme = "README.md"
license = "MIT"
[profile.dev]
panic = "abort"
[profile.test]
panic = "abort"
[profile.bench]
panic = "abort"
[profile.release]
panic = "abort"
opt-level = 2
lto = true
[dependencies]
nvapi = { package = "nvapi-hi", version = "0.3.1", features = ["serde_types"], path = "nvapi-rs/hi" }
clap = { version = "2.26.2", default-features = false }
prettytable-rs = { version = "0.10.0", default-features = false }
quick-error = "2.0.0"
log = "0.4.0"
env_logger = "0.9.0"
csv = "1.1.0"
serde = { version = "^1.0.0", features = ["derive"] }
serde_json = "^1.0.0"