20 lines
537 B
TOML
20 lines
537 B
TOML
[package]
|
|
name = "aster-block"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
spin = "0.9.4"
|
|
ostd = { path = "../../../ostd" }
|
|
align_ext = { path = "../../../ostd/libs/align_ext" }
|
|
int-to-c-enum = { path = "../../libs/int-to-c-enum" }
|
|
component = { path = "../../libs/comp-sys/component" }
|
|
log = "0.4"
|
|
static_assertions = "1.1.0"
|
|
bitvec = { version = "1.0.1", default-features = false, features = ["alloc"] }
|
|
|
|
[lints]
|
|
workspace = true
|