mirror of
https://github.com/servo/servo
synced 2026-04-26 17:45:19 +02:00
* Fix crown on NixOS * no need to install libs, because there are none * fix program name in usage message * use the cargo provided by each buildPhase * cargo update --offline can be used to reformat lockfiles * document how to keep rust-toolchain.toml and etc/shell.nix in sync * clarify comment about allowBuiltinFetchGit * fix license * clarify purpose of filterlock * explain why crown must not use workspace dependencies
23 lines
641 B
TOML
23 lines
641 B
TOML
[package]
|
|
name = "crown"
|
|
authors = ["The Servo Project Developers"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
|
|
# Do not use workspace dependencies in this package!
|
|
# In etc/shell.nix, we filter Cargo.lock and build this package in isolation,
|
|
# so it needs to make sense without the workspace manifest.
|
|
[dev-dependencies]
|
|
compiletest_rs = { version = "0.10", features = ["tmp"] }
|
|
once_cell = "1"
|
|
|
|
[features]
|
|
default = ["unrooted_must_root_lint", "trace_in_no_trace_lint"]
|
|
unrooted_must_root_lint = []
|
|
trace_in_no_trace_lint = []
|
|
|
|
[package.metadata.rust-analyzer]
|
|
# This crate uses #![feature(rustc_private)]
|
|
rustc_private = true
|