-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.67 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (42 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
resolver = "2"
members = [
# NOTE: "kernel" is intentionally NOT a member. It's a freestanding
# x86_64-unknown-none binary (no_std, panic=abort) — a different target
# than every other crate here, which cargo can't mix into one
# `cargo build --workspace` invocation. It's a standalone package with
# its own .cargo/config.toml; build it via `cargo build` from kernel/.
#
# NOTE: "xtask" is also intentionally NOT a member, for a different
# reason: it depends on the `bootloader` crate (the image builder),
# whose build script needs a nightly cargo (`-Z` flags) regardless of
# host/target — mixing that into a `--workspace` build breaks the stable
# toolchain this repo otherwise runs on. It's standalone with its own
# rust-toolchain.toml pinning nightly; run it via `cargo run` from
# xtask/, which builds the kernel and wraps it into a bootable image.
#
# NOTE: "kernel-arm" is also intentionally NOT a member, same first
# reason as "kernel" — it's freestanding (aarch64-unknown-none, no_std,
# panic=abort), a third target triple alongside this workspace's host
# target and kernel/'s x86_64-unknown-none. Build it via `cargo build
# --target aarch64-unknown-none` from kernel-arm/.
"capability-manager",
"ipc",
"wasm-runtime",
"citadel-integration",
"desktop",
"mobile",
]
[workspace.package]
version = "0.0.1"
edition = "2021"
rust-version = "1.75"
license = "Apache-2.0"
repository = "https://github.com/opensecstack/runix"
publish = false
[workspace.dependencies]
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ed25519-dalek = "2"
hex = "0.4"