- switched to the ´widestring´ crate for u16string support - moved the error handling code from the utils crate to here.
18 lines
493 B
TOML
18 lines
493 B
TOML
[package]
|
|
name = "image-help"
|
|
version = "0.1.0"
|
|
authors = ["Janis <janis@nirgendwo.xyz>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
winapi = {version = "0.3.9" , features = ["libloaderapi", "dbghelp", "ntdef", "processthreadsapi", "winerror", "errhandlingapi", "winuser"] }
|
|
widestring = "1.0.2"
|
|
lazy_static = "1.0.0"
|
|
thiserror = "1.0.0"
|
|
log = "0.4.0"
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2"
|
|
env_logger = "*" |