-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump crate versions to 0.3.0 and normalized Cargo.toml files (#173)
* Bump crate versions to 0.3.0 and normalized Cargo.toml files. * setup.cfg: add missing maintainer info.
- Loading branch information
Showing
4 changed files
with
20 additions
and
10 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,7 +1,11 @@ | ||
[package] | ||
name = "cmsis-cffi" | ||
version = "0.2.0" | ||
authors = ["Jimmy Brisson <[email protected]>"] | ||
version = "0.3.0" | ||
authors = ["Jimmy Brisson <[email protected]>", | ||
"Chris Reed <[email protected]>", | ||
"Mathias Brossard <[email protected]>"] | ||
description = "FFI for cmsis-pack" | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
|
||
[lib] | ||
|
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,7 +1,11 @@ | ||
[package] | ||
authors = ["Jimmy Brisson <[email protected]>"] | ||
name = "cmsis-cli" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Jimmy Brisson <[email protected]>", | ||
"Chris Reed <[email protected]>", | ||
"Mathias Brossard <[email protected]>"] | ||
description = "Simple command line interface for CMSIS Pack management" | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
|
||
[lib] | ||
|
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,15 +1,15 @@ | ||
[package] | ||
name = "cmsis-pack" | ||
version = "0.3.0" | ||
authors = ["Jimmy Brisson <[email protected]>", | ||
"Chris Reed <chris.reed@arm.com>", | ||
"Chris Reed <flit@me.com>", | ||
"Mathias Brossard <[email protected]>"] | ||
name = "cmsis-pack" | ||
repository = "https://github.com/ARMmbed/cmsis-pack-manager" | ||
version = "0.2.0" | ||
edition = "2018" | ||
description = "Rust crate for managing CMSIS PACKs" | ||
repository = "https://github.com/pyocd/cmsis-pack-manager" | ||
description = "Rust crate for managing CMSIS Packs" | ||
license = "Apache-2.0" | ||
categories = ["embedded", "hardware-support", "development-tools::debugging"] | ||
keywords = ["embedded", "cmsis"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
failure = "0.1.1" | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,8 @@ description = Python manager for CMSIS-Pack index and cache with fast Rust backe | |
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/pyocd/cmsis-pack-manager | ||
maintainer = "Mathias Brossard, Chris Reed" | ||
maintainer_email = "[email protected], [email protected]" | ||
license = Apache 2.0 | ||
license_file = LICENSE | ||
classifiers = | ||
|