-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (33 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (33 loc) · 1.06 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[workspace]
members = ["dragonfly-errno"]
[package]
name = "os-error-code"
version = "0.1.0"
authors = ["FaultyRAM <explodingpsu@gmail.com>"]
description = "Functions for obtaining and updating the platform-specfic last error code."
repository = "https://github.com/FaultyRAM/os-error-code"
readme = "README.md"
categories = ["api-bindings", "no-std", "os"]
license = "Apache-2.0 OR MIT"
[badges.appveyor]
repository = "FaultyRAM/os-error-code"
[badges.travis-ci]
repository = "FaultyRAM/os-error-code"
[badges.is-it-maintained-issue-resolution]
repository = "FaultyRAM/os-error-code"
[badges.is-it-maintained-open-issues]
repository = "FaultyRAM/os-error-code"
[badges.maintenance]
status = "actively-developed"
[dependencies.clippy]
version = "0.0"
optional = true
[target.'cfg(unix)'.dependencies.libc]
version = "0.2"
default-features = false
[target.'cfg(target_os = "dragonfly")'.dependencies.dragonfly-errno]
path = "dragonfly-errno"
[target.'cfg(windows)'.dependencies.winapi]
git = "https://github.com/retep998/winapi-rs.git"
branch = "dev"
features = ["errhandlingapi"]