blob: e2fa275446cd37bbf5697ad4b9bf09a1988f1673 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "rust_3ds"
version = "0.1.0"
authors = ["Dario Bartussek <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["staticlib"]
[profile.dev]
panic = "abort"
opt-level = "s"
[profile.release]
panic = "abort"
opt-level = "s"
[dependencies]
libctru = { git = "https://github.com/dbartussek/libctru-rs.git" }
|