]> git.proxmox.com Git - rustc.git/blob - src/vendor/string_cache/Cargo.toml.orig
New upstream version 1.27.1+dfsg1
[rustc.git] / src / vendor / string_cache / Cargo.toml.orig
1 [package]
2
3 name = "string_cache"
4 version = "0.7.1" # Also update README.md when making a semver-breaking change
5 authors = [ "The Servo Project Developers" ]
6 description = "A string interning library for Rust, developed as part of the Servo project."
7 license = "MIT / Apache-2.0"
8 repository = "https://github.com/servo/string-cache"
9 documentation = "https://docs.rs/string_cache/"
10 build = "build.rs"
11
12 # Do not `exclude` ./string-cache-codegen because we want to include
13 # ./string-cache-codegen/shared.rs, and `include` is a pain to use
14 # (It has to be exhaustive.)
15 # This means that packages for this crate include some unused files,
16 # but they’re not too big so that shouldn’t be a problem.
17
18 [lib]
19 name = "string_cache"
20
21 [features]
22
23 # Enable event logging for generating benchmark traces.
24 # See examples/event-log.
25 log-events = []
26
27 # Use unstable features to optimize space and time (memory and CPU usage).
28 unstable = []
29
30 [dependencies]
31 precomputed-hash = "0.1"
32 lazy_static = "1"
33 serde = "1"
34 phf_shared = "0.7.4"
35 debug_unreachable = "0.1.1"
36 string_cache_shared = {path = "./shared", version = "0.3"}
37
38 [dev-dependencies]
39 rand = "0.3"
40
41 [build-dependencies]
42 string_cache_codegen = { version = "0.4", path = "./string-cache-codegen" }