-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 720 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (22 loc) · 720 Bytes
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
[package]
name = "run-down"
version = "0.1.1"
description = "An implementation of run-down protection in rust."
authors = ["Brian Gianforcaro <b.gianfo@gmail.com>"]
keywords = ["rundown", "protection", "synchronization", "reference-count"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/bgianfo/rust-run-down"
license = "MIT"
categories = ["concurrency", "memory-management"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "bgianfo/rust-run-down", branch = "master" }
[dependencies]
bitflags = "1.2.1"
lazy-init = "0.5.0"
rsevents = "0.3.0"
[dev-dependencies]
pretty_assertions = "1.0"
# See: https://github.com/rust-lang/rust/issues/45599
doc-comment = "0.3.3"