forked from servo/string-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (40 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
53 lines (40 loc) · 1.1 KB
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
52
53
[package]
name = "string_cache"
version = "0.2.17"
authors = [ "The Servo Project Developers" ]
description = "A string interning library for Rust, developed as part of the Servo project."
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/string-cache"
documentation = "http://doc.servo.org/string_cache/"
build = "build.rs"
[lib]
name = "string_cache"
# https://github.com/rust-lang/cargo/issues/1512
doctest = false
[features]
# Enable event logging for generating benchmark traces.
# See examples/event-log.
log-events = ["rustc-serialize"]
# Use unstable features to optimize space and time (memory and CPU usage).
unstable = []
# HeapSizeOf support
heap_size = ["heapsize", "heapsize_plugin"]
[dependencies]
lazy_static = "0.2"
serde = ">=0.6, <0.8"
phf_shared = "0.7.4"
debug_unreachable = "0.1.1"
[dev-dependencies]
rand = "0.3"
[dependencies.rustc-serialize]
version = "0.3"
optional = true
[dependencies.heapsize]
version = ">=0.1.1, <0.4"
optional = true
[dependencies.heapsize_plugin]
version = "0.1.4"
optional = true
[build-dependencies]
phf_generator = "0.7.4"
phf_shared = "0.7.4"