mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Cargo will already traverse up the directory hierarchy to find an appropriate workspace, so we don't need to specify anything here. This change brings components/atoms/Cargo.toml in line with other Cargo.toml files in the tree.
16 lines
295 B
TOML
16 lines
295 B
TOML
[package]
|
|
name = "servo_atoms"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
string_cache = {version = "0.6", features = ["heapsize"]}
|
|
|
|
[build-dependencies]
|
|
string_cache_codegen = "0.4"
|