summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDario Bartussek <[email protected]>2021-03-26 18:42:59 +0100
committerDario Bartussek <[email protected]>2021-03-26 18:42:59 +0100
commit2910e99c89eb10ccc3b8036a2975ae13302475d9 (patch)
treecdcf3c32b6a0f24a8fcdf3c77073a880b9631c06 /Cargo.toml
downloadrust_3ds-2910e99c89eb10ccc3b8036a2975ae13302475d9.tar.xz
rust_3ds-2910e99c89eb10ccc3b8036a2975ae13302475d9.zip
Basic example for compiling Rust for the 3DS as elf
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..a9c6d62
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "rust_3ds"
+version = "0.1.0"
+authors = ["Dario Bartussek <[email protected]>"]
+edition = "2018"
+license = "MIT OR Apache-2.0"
+
+[profile.dev]
+panic = "abort"
+opt-level = "s"
+
+[profile.release]
+panic = "abort"
+opt-level = "s"
+
+[dependencies]