25 lines
443 B
TOML
25 lines
443 B
TOML
[package]
|
|
name = "libcolors"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
[dependencies]
|
|
cross.workspace = true
|
|
uipc.workspace = true
|
|
yggdrasil-abi.workspace = true
|
|
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
# client_raqote
|
|
raqote = { version = "0.8.3", default-features = false, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
client_raqote = ["client", "raqote"]
|
|
client = []
|
|
|
|
[lints]
|
|
workspace = true
|