forked from ruuda/thread-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (23 loc) · 870 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
27
28
[package]
name = "thread-id"
version = "3.3.0"
authors = ["Ruud van Asseldonk <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "readme.md"
keywords = ["thread", "pthread", "getcurrentthreadid"]
description = "Get a unique thread ID"
repository = "https://github.com/ruuda/thread-id"
documentation = "https://docs.rs/thread-id"
[badges]
travis-ci = { repository = "ruuda/thread-id", branch = "v3.3.0" }
appveyor = { repository = "ruuda/thread-id", branch = "v3.3.0" }
#[target.'cfg(unix)'.dependencies]
#libc = "0.2.6"
[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_types = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git" }
[target.'cfg(windows)'.dependencies]
#winapi = { version = "0.3", features = ["processthreadsapi"] }
[target.'cfg(target_os = "redox")'.dependencies]
#redox_syscall = "0.1"
[features]
default = []