asterinas/osdk/Cargo.toml

32 lines
983 B
TOML
Raw Permalink Normal View History

2024-02-18 09:42:31 +00:00
[package]
name = "cargo-osdk"
2025-02-27 03:42:59 +00:00
version = "0.11.3"
2024-02-18 09:42:31 +00:00
edition = "2021"
description = "Accelerate OS development with Asterinas OSDK"
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/asterinas/asterinas"
2024-02-18 09:42:31 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2025-02-27 03:42:59 +00:00
linux-bzimage-builder = { version = "0.11.3", path = "../ostd/libs/linux-bzimage/builder" }
2024-02-18 09:42:31 +00:00
clap = { version = "4.4.17", features = ["cargo", "derive"] }
chrono = "0.4.38"
2024-02-18 09:42:31 +00:00
env_logger = "0.11.0"
inferno = "0.11.21"
2024-02-18 09:42:31 +00:00
indexmap = "2.2.1"
indicatif = "0.17.8" # For a commandline progress bar
2024-02-18 09:42:31 +00:00
log = "0.4.20"
quote = "1.0.35"
regex = "1.10.4"
rev_buf_reader = "0.3.0"
2024-02-18 09:42:31 +00:00
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
2024-04-12 17:08:36 +00:00
shlex = "1.3.0"
syn = { version = "2.0.52", features = ["extra-traits", "full", "parsing", "printing"] }
2024-02-18 09:42:31 +00:00
toml = { version = "0.8.8", features = ["preserve_order"] }
[dev-dependencies]
assert_cmd = "2.0.13"