Remove unnecessary [dependencies.unicode-properties] entries.

The Cargo style guide says to put dependencies on a single line if they
fit.
This commit is contained in:
Nicholas Nethercote 2025-08-28 08:08:40 +10:00
parent d829133816
commit b4c8fe2b4b
3 changed files with 3 additions and 14 deletions

View file

@ -15,12 +15,8 @@ Rust lexer used by rustc. No stability guarantees are provided.
# Note that this crate purposefully does not depend on other rustc crates
[dependencies]
memchr.workspace = true
unicode-properties = { version = "0.1.0", default-features = false, features = ["emoji"] }
unicode-xid = "0.2.0"
[dependencies.unicode-properties]
version = "0.1.0"
default-features = false
features = ["emoji"]
[dev-dependencies]
expect-test = "1.4.0"