generated from al8n/template-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (44 loc) · 1.09 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "atomic-time"
version = "0.1.5"
edition = "2018"
repository = "https://github.com/al8n/atomic-time"
homepage = "https://github.com/al8n/atomic-time"
documentation = "https://docs.rs/atomic-time"
description = "`AtomicDuration`, `AtomicOptionDuration`, `AtomicSystemTime`, `AtomicOptionSystemTime`, `AtomicInstant` and `AtomicOptionInstant` for Rust."
license = "MIT/Apache-2.0"
rust-version = "1.34.0"
keywords = [
"atomic",
"no_std",
"atomic-duration",
"atomic-instant",
"atomic-systemtime",
]
categories = [
"development-tools",
"concurrency",
"no-std"
]
exclude = ["benchmark"]
[features]
default = ["std"]
std = ["portable-atomic/std", "once_cell"]
[dependencies]
portable-atomic = "1"
once_cell = { version = "1", optional = true }
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
serde_json = "1"
[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'thin'
incremental = false
debug-assertions = false
overflow-checks = false
rpath = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]