summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 46d920200719cf9a67cc2e981f8b07705fd334b2 (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 = { path = "../libctru" }