They are only used by rustc_lexer, and are not needed elsewhere. So we move the relevant definitions into rustc_lexer (while the actual unicode data comes from the unicode-xid crate) and make the rest of the compiler use it.
14 lines
254 B
TOML
14 lines
254 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "fmt_macros"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "fmt_macros"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc_lexer = { path = "../librustc_lexer" }
|