diff options
| author | Dario Bartussek <[email protected]> | 2021-04-19 13:50:42 +0200 |
|---|---|---|
| committer | Dario Bartussek <[email protected]> | 2021-04-19 13:50:42 +0200 |
| commit | 1f8f4e05410df148b7f3c3fd35f85c9b37d0401f (patch) | |
| tree | 02f04335c9c2a9497b9c4a7113e0d1338194d674 /Cargo.toml | |
| parent | Merge branch '2_3ds_exe' of https://github.com/dbartussek/rust_3ds into 2_3ds... (diff) | |
| download | rust_3ds-1f8f4e05410df148b7f3c3fd35f85c9b37d0401f.tar.xz rust_3ds-1f8f4e05410df148b7f3c3fd35f85c9b37d0401f.zip | |
Simple hello world program using libctru2.5_libctru
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -5,6 +5,9 @@ authors = ["Dario Bartussek <[email protected]>"] edition = "2018" license = "MIT OR Apache-2.0" +[lib] +crate-type = ["staticlib"] + [profile.dev] panic = "abort" opt-level = "s" @@ -13,7 +16,5 @@ opt-level = "s" panic = "abort" opt-level = "s" -[build-dependencies] -cc = "1.0.67" - [dependencies] +libctru = { git = "https://github.com/dbartussek/libctru-rs.git" } |