blob: 1eb1be92cd94d9585cccbe278b662f568ee98b0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| # SPDX-FileCopyrightText: 2026 Nikolay Govorov
# SPDX-License-Identifier: Apache-2.0
[workspace]
resolver = "3"
members = ["crates/*"]
[workspace.package]
publish = false
edition = "2024"
version = "0.1.0"
license = "Apache-2.0"
authors = ["Nikolay Govorov <me@govorov.online>"]
repository = "https://github.com/dimidiumlabs/hule"
[workspace.dependencies]
# local dependencies
hule-oci = { path = "crates/hule-oci" }
hule-vmm = { path = "crates/hule-vmm" }
|