]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lexer/Cargo.toml
Auto merge of #83357 - saethlin:vec-reserve-inlining, r=dtolnay
[rust.git] / compiler / rustc_lexer / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_lexer"
4 version = "0.1.0"
5 license = "MIT OR Apache-2.0"
6 edition = "2018"
7
8 repository = "https://github.com/rust-lang/rust/"
9 description = """
10 Rust lexer used by rustc. No stability guarantees are provided.
11 """
12
13 # Note: do not remove this blank `[lib]` section.
14 # This will be used when publishing this crate as `rustc-ap-rustc_lexer`.
15 [lib]
16 doctest = false
17
18 # Note that this crate purposefully does not depend on other rustc crates
19 [dependencies]
20 unicode-xid = "0.2.0"
21
22 [dev-dependencies]
23 expect-test = "1.0"