]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_lexer/Cargo.toml
New upstream version 1.48.0~beta.8+dfsg1
[rustc.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"