-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from rust3ds/publish
fix cargo.toml 2
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[package] | ||
name = "cargo-3ds" | ||
version = "0.1.0" | ||
authors = [ "Rust3DS Org", "Andrea Ciliberti <[email protected]>" ] | ||
authors = ["Rust3DS Org", "Andrea Ciliberti <[email protected]>"] | ||
description = "Cargo wrapper for developing Nintendo 3DS homebrew apps" | ||
repository = "https://github.com/rust3ds/cargo-3ds" | ||
keywords = ["3ds", "homebrew"] | ||
categories = ["command-line-utilities", "development-tools::cargo-plugins"] | ||
exclude = [".github"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
cargo_metadata = "0.14.0" | ||
rustc_version = "0.4.0" | ||
semver = "1.0.10" | ||
serde = { version = "1.0.139", features = ['derive'] } | ||
serde = { version = "1.0.139", features = ["derive"] } | ||
tee = "0.1.0" | ||
toml = "0.5.6" | ||
clap = { version = "4.0.15", features = ["derive", "wrap_help"] } |