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