-
Notifications
You must be signed in to change notification settings - Fork 57
/
Cargo.toml
27 lines (25 loc) · 897 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"multiboot2",
"multiboot2-common",
"multiboot2-header",
]
exclude = [
"integration-test"
]
[workspace.dependencies]
bitflags = "2.6.0"
derive_more = { version = "1.0.0", default-features = false, features = ["display"] }
log = { version = "~0.4", default-features = false }
multiboot2 = { version = "0.23.1", default-features = false }
multiboot2-common = { version = "0.2.1", default-features = false }
# Warn: 0.3 has multiple very breaking changes
ptr_meta = { version = "~0.2", default-features = false }
# This way, the corresponding crate dependency can be normalley referenced by
# version, while still the repository version is used transparently during local
# development.
[patch.crates-io]
multiboot2 = { path = "multiboot2" }
multiboot2-common = { path = "multiboot2-common" }
multiboot2-header = { path = "multiboot2-header" }