mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-24 18:03:25 +00:00
21 lines
505 B
TOML
21 lines
505 B
TOML
[package]
|
|
name = "aster-logger"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
component = { path = "../../libs/comp-sys/component" }
|
|
aster-console = { path = "../console" }
|
|
aster-virtio = { path = "../virtio" }
|
|
log = "0.4"
|
|
ostd = { path = "../../../ostd" }
|
|
spin = "0.9.4"
|
|
owo-colors = { version = "3", optional = true }
|
|
cfg-if = "1.0"
|
|
|
|
[features]
|
|
default = ["log_color"]
|
|
log_color = ["dep:owo-colors"]
|