-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (21 loc) · 892 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
[package]
name = "failed-result"
version = "0.2.6"
edition = "2021"
license = "MIT"
authors = ["metaworm <[email protected]>"]
description = "A small crate for converting various failed value to result with corresponding error type"
documentation = "https://docs.rs/failed-result"
repository = "https://github.com/metaworm/failed-result"
include = ["/src", "/tests", "README.md"]
keywords = ['error', 'failure']
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[target.'cfg(windows)'.dependencies]
windows = {version = '0.58', features = ["Win32_Foundation"]}
[dev-dependencies]
anyhow = '1'
[target.'cfg(windows)'.dev-dependencies]
winapi = {version = '0.3.9', features = [
"winnt", "processthreadsapi", "psapi", "errhandlingapi", "winuser", "winbase", "fileapi", "ioapiset", "winerror", "stringapiset", "winnls",
]}