-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 764 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
26
27
28
29
30
31
[package]
name = "gcmodule"
version = "0.3.3"
authors = ["Jun Wu <quark@lihdd.net>"]
edition = "2018"
license = "MIT"
description = "Cyclic garbage collection inspired by CPython's gc implementation."
keywords = ["gc", "garbage", "cycle", "rc"]
repository = "https://github.com/quark-zju/gcmodule"
categories = ["memory-management"]
readme = "README.md"
[dev-dependencies]
quickcheck = { version = "0.9", default-features = false }
[dependencies]
gcmodule_derive = { version = "=0.3.3", optional = true, path = "gcmodule_derive" }
parking_lot = { version = "0.10", optional = true }
[features]
default = ["derive", "sync"]
debug = []
derive = ["gcmodule_derive"]
nightly = []
sync = ["parking_lot"]
testutil = []
[workspace]
members = [
"gcmodule_derive",
]