Files
RedBear-OS/local/recipes/system/cub/source/Cargo.toml
T
2026-05-07 20:57:51 +01:00

30 lines
686 B
TOML

[workspace]
resolver = "2"
members = [
"cub-lib",
"cub-cli",
"cub-tui",
]
default-members = [
"cub-cli",
]
[workspace.package]
version = "0.1.0"
description = "Red Bear OS Package Builder"
license = "MIT"
authors = ["Red Bear OS Contributors"]
repository = "https://gitlab.redox-os.org/redox-os/redox"
edition = "2021"
[workspace.dependencies]
serde = "1"
serde_derive = "1"
toml = "0.8.2"
thiserror = "2"
clap = { version = "4.3", features = ["cargo", "derive"] }
[patch.crates-io]
ring = { git = "https://gitlab.redox-os.org/redox-os/ring.git", branch = "redox-0.17.8" }
cc-11 = { git = "https://github.com/tea/cc-rs", branch="riscv-abi-arch-fix", package = "cc" }