asterinas/kernel/libs/comp-sys/component/tests/init-order/Cargo.toml

21 lines
387 B
TOML

[package]
name = "init-order"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
component = {path="../../../component"}
first-init = {path="first-init"}
second-init = {path="second-init"}
simple_logger = "4.0.0"
log = "0.4"
[workspace]
members = [
"first-init",
"second-init"
]