-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (33 loc) · 1.03 KB
/
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
28
29
30
31
32
33
34
35
36
37
[package]
name = "nds"
version = "0.1.0"
authors = ["BlueTheDuck <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["nds-sys", "nds-proc-macros"]
[dependencies]
nds-sys = { path = "nds-sys" }
nds-proc-macros = { path = "nds-proc-macros", optional = true }
bitflags = "2.4.1"
paste = "1"
spin = { version = "0.9", default-features = false, features = [
"spin_mutex",
"portable_atomic",
], optional = true }
portable-atomic = { version = "1.4.2", default-features = false, features = [
"unsafe-assume-single-core",
"require-cas",
], optional = true }
embedded-graphics-core = { version = "0.4.0", optional = true }
once_cell = { version = "1.18.0", default-features = false, optional = true }
[features]
default = [
"default_panic_screen",
"nocash_tty",
"proc_macros",
"embedded-graphics-core",
]
default_panic_screen = []
nocash_tty = ["spin", "once_cell", "portable-atomic"]
proc_macros = ["nds-proc-macros"]