mirror of
https://github.com/Zenithsiz/zutil.git
synced 2026-02-04 02:38:42 +00:00
40 lines
704 B
TOML
40 lines
704 B
TOML
[package]
|
|
name = "dcb-util"
|
|
version = "0.1.0"
|
|
authors = ["Filipe Rodrigues <filipejacintorodrigues1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
|
|
# Util
|
|
arrayref = "0.3.6"
|
|
ascii = { version = "1.0.0", features = ["serde"] }
|
|
int-conv = "0.1.4"
|
|
either = "1.6.1"
|
|
sealed = "0.3.0"
|
|
derive_more = "0.99.14"
|
|
|
|
# Serde
|
|
serde = { version = "1.0.120", features = ["derive"] }
|
|
|
|
# Derives
|
|
thiserror = "1.0.23"
|
|
ref-cast = "1.0.6"
|
|
|
|
# Thread
|
|
rayon = "1.5.1"
|
|
futures = "0.3.15"
|
|
thread_local = "1.1.3"
|
|
|
|
# Logging
|
|
log = "0.4.14"
|
|
|
|
# Gui
|
|
eframe = { git = "https://github.com/emilk/egui", optional = true }
|
|
|
|
# Alert
|
|
native-dialog = { version = "0.5.5", optional = true }
|
|
|
|
[features]
|
|
gui = ["eframe"]
|
|
alert = ["native-dialog"] |