generated from Tamschi/rust-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.33 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
[package]
name = "tiptoe"
version = "0.0.2"
authors = ["Tamme Schichler <[email protected]>"]
edition = "2018"
description = "An easy-to-support intrusively reference-counting smart pointer." # TODO: \rs. Implement once non-generically for both `Arc` and `Rc`, no overhead.
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tamschi/tiptoe"
homepage = "https://github.com/Tamschi/tiptoe/tree/v0.0.2"
documentation = "https://docs.rs/tiptoe/0.0.2"
keywords = ["arc", "rc", "intrusive", "no_std"]
categories = ["rust-patterns"]
readme = "README.md"
include = [
"**/*.rs",
"!tests/unincluded_*.rs", # Tests of meta data files not included in the package.
"Cargo.toml",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"COPYRIGHT.md",
"LICENSE-*",
"README.md",
"SECURITY.md",
]
resolver = "2"
publish = false
[features]
sync = []
[badges]
is-it-maintained-issue-resolution = { repository = "Tamschi/tiptoe" }
is-it-maintained-open-issues = { repository = "Tamschi/tiptoe" }
maintenance = { status = "experimental" } # This may differ between branches.
[dev-dependencies]
cargo-husky = "1.5.0"
git_info = "0.1.2"
pin-project = "1.0.8"
version-sync = "0.9.3"
wasm-bindgen-test = "0.3.28"
[dependencies]
abort = "0.1.3"
tap = "1.0.1"
[package.metadata.docs.rs]
all-features = true
targets = [] # Default target only, as there are no platform differences.