-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
35 lines (31 loc) · 932 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
28
29
30
31
32
33
34
35
[package]
name = "ogc-rs"
version = "0.1.1"
authors = ["rust-wii"]
edition = "2021"
license = "MIT"
readme = "README.md"
description = "A Rust wrapper library for devkitPro's libogc"
documentation = "https://docs.rs/ogc-rs/"
homepage = "https://github.com/rust-wii/ogc-rs"
repository = "https://github.com/rust-wii/ogc-rs"
keywords = ["wii", "embedded", "no-std"]
[lib]
crate-type = ["rlib"]
[features]
default = ["default_alloc_handler", "default_panic_handler"]
ffi = []
mmio = []
glam_compat = ["glam"]
default_alloc_handler = []
default_panic_handler = []
[dependencies]
bitflags = "1.3"
num_enum = { version = "0.5", default-features = false }
cfg-if = "1.0"
libc = "0.2"
ogc-sys = { path = "./ogc-sys/"}
glam = { version = "0.19.0", default-features = false, features = ["libm"], optional = true }
voladdress = "1.4"
bit_field = "0.10.1"
num-traits = { version = "0.2.19", default-features = false, features = ["libm"] }