-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 739 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
[package]
authors = ["hill <hill@hilll.dev>"]
description = "vkfetch-rs is a fetch-program that displays basic information about your vulkan-compatible graphic card(s)!"
edition = "2024"
keywords = ["vulkan", "neofetch", "gpu", "fetch"]
license = "AGPL-3.0"
repository = "https://github.com/float3/vkfetch-rs"
version = "0.2.5"
name = "vkfetch-rs"
categories = ["command-line-utilities"]
readme = "README.md"
[features]
default = ["ash/linked"]
loaded = ["ash/loaded"]
[dependencies]
ash = { version = "0.38.0", default-features = false, features = ["std"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", default-features = false, features = [
"handleapi",
"consoleapi",
"processenv",
"winbase",
] }