2019-05-06 08:53:40 +00:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_lexer"
|
|
|
|
version = "0.1.0"
|
2019-09-05 20:03:50 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-05-06 08:53:40 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
2019-09-05 20:03:50 +00:00
|
|
|
repository = "https://github.com/rust-lang/rust/"
|
|
|
|
description = """
|
|
|
|
Rust lexer used by rustc. No stability guarantees are provided.
|
|
|
|
"""
|
|
|
|
|
2019-07-27 13:10:09 +00:00
|
|
|
# Note: do not remove this blank `[lib]` section.
|
|
|
|
# This will be used when publishing this crate as `rustc-ap-rustc_lexer`.
|
2019-07-27 08:21:42 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
name = "rustc_lexer"
|
2019-07-21 11:50:39 +00:00
|
|
|
|
|
|
|
# Note that this crate purposefully does not depend on other rustc crates
|
|
|
|
[dependencies]
|
|
|
|
unicode-xid = "0.2.0"
|