This was done in #145740 and #145947. It is causing problems for people using r-a on anything that uses the rustc-dev rustup package, e.g. Miri, clippy. This repository has lots of submodules and subtrees and various different projects are carved out of pieces of it. It seems like `[workspace.dependencies]` will just be more trouble than it's worth.
23 lines
625 B
TOML
23 lines
625 B
TOML
[package]
|
|
name = "rustc_lexer"
|
|
version = "0.0.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2024"
|
|
repository = "https://github.com/rust-lang/rust/"
|
|
description = """
|
|
Rust lexer used by rustc. No stability guarantees are provided.
|
|
"""
|
|
|
|
# Note: do not remove this blank `[lib]` section.
|
|
# This will be used when publishing this crate as `rustc-ap-rustc_lexer`.
|
|
[lib]
|
|
|
|
# Note that this crate purposefully does not depend on other rustc crates
|
|
[dependencies]
|
|
memchr = "2.7.4"
|
|
unicode-properties = { version = "0.1.0", default-features = false, features = ["emoji"] }
|
|
unicode-xid = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.4.0"
|