mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
It should replace `match foo.to_ascii_lower().as_slice() { ...}` @Manishearth I changed map.get to map.find in the lint to work around an ICE: task 'rustc' panicked at 'couldn't find node id 0 in the AST map' Does this look OK?
38 lines
756 B
TOML
38 lines
756 B
TOML
[package]
|
|
name = "util"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "util"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.cssparser]
|
|
git = "https://github.com/servo/rust-cssparser"
|
|
|
|
[dependencies.geom]
|
|
git = "https://github.com/servo/rust-geom"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
|
|
[dependencies.task_info]
|
|
path = "../../support/rust-task_info"
|
|
|
|
[dependencies.string_cache]
|
|
git = "https://github.com/servo/string-cache"
|
|
|
|
[dependencies.string_cache_macros]
|
|
git = "https://github.com/servo/string-cache"
|
|
|
|
[dependencies.url]
|
|
git = "https://github.com/servo/rust-url"
|
|
|
|
[dependencies.time]
|
|
git = "https://github.com/rust-lang/time"
|
|
|
|
[dependencies]
|
|
text_writer = "0.1.1"
|