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

21 lines
387 B
TOML
Raw Normal View History

[package]
2023-02-27 10:41:52 +00:00
name = "init-order"
version = "0.1.0"
2025-12-08 12:49:46 +00:00
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
component = {path="../../../component"}
2023-02-27 10:41:52 +00:00
first-init = {path="first-init"}
second-init = {path="second-init"}
simple_logger = "4.0.0"
log = "0.4"
[workspace]
2023-02-27 10:41:52 +00:00
members = [
"first-init",
"second-init"
]