14 lines
368 B
TOML
14 lines
368 B
TOML
[package]
|
|
name = "qft"
|
|
version = "0.5.6"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
iui = { git = "https://github.com/rust-native-ui/libui-rs", optional = true, version = "0.3" }
|
|
rand = { version = "0.8", optional = true }
|
|
time = "0.3"
|
|
|
|
[features]
|
|
gui = [ "dep:iui", "dep:rand" ]
|