2024-11-15 08:58:06 +00:00
|
|
|
[package]
|
|
|
|
|
name = "aster-logger"
|
|
|
|
|
version = "0.1.0"
|
2025-12-08 12:49:46 +00:00
|
|
|
edition = "2024"
|
2024-11-15 08:58:06 +00:00
|
|
|
|
|
|
|
|
# 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" }
|
|
|
|
|
log = "0.4"
|
|
|
|
|
ostd = { path = "../../../ostd" }
|
|
|
|
|
owo-colors = { version = "3", optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["log_color"]
|
|
|
|
|
log_color = ["dep:owo-colors"]
|
2025-01-24 16:56:07 +00:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|