mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
743f9b345f
We should prefer referring to local deps via `.workspace = true` from now on. Release Notes: - N/A
20 lines
347 B
TOML
20 lines
347 B
TOML
[package]
|
|
name = "color"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[features]
|
|
default = []
|
|
stories = ["dep:itertools", "dep:story"]
|
|
|
|
[lib]
|
|
path = "src/color.rs"
|
|
doctest = true
|
|
|
|
[dependencies]
|
|
itertools = { version = "0.11.0", optional = true }
|
|
palette = "0.7.3"
|
|
story = { workspace = true, optional = true }
|