]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lexer/Cargo.toml
Rollup merge of #106779 - RReverser:patch-2, r=Mark-Simulacrum
[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
16 # Note that this crate purposefully does not depend on other rustc crates
17 [dependencies]
18 unicode-xid = "0.2.0"
19 unic-emoji-char = "0.9.0"
20
21 [dev-dependencies]
22 expect-test = "1.4.0"