Bug 1716518 - Upgrade ident_case to v1.0.1. r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D117800
This commit is contained in:
Mike Hommey 2021-06-15 21:24:47 +00:00
parent 4578726c66
commit 2d1c12dc65
6 changed files with 44 additions and 6 deletions

4
Cargo.lock generated
View File

@ -2412,9 +2412,9 @@ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
[[package]]
name = "ident_case"
version = "1.0.0"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c9826188e666f2ed92071d2dadef6edc430b11b158b5b2b3f4babbcc891eaaa"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"

View File

@ -1 +1 @@
{"files":{"Cargo.toml":"3681cda0ac4bdc59fa7b33e33c8ee415fdab6e9bb1f80141cc07b992f8497480","README.md":"e28f5a92f554f487eb3726cc99698d826deb3bb70472be06fa64be05c6a4585a","src/lib.rs":"514f0c716fba1e8fbeefc118848655ceafa22fd24787ca28c0e7c2143d5c7175"},"package":"3c9826188e666f2ed92071d2dadef6edc430b11b158b5b2b3f4babbcc891eaaa"}
{"files":{"CHANGELOG.md":"86f673c2579eacf6bb82331c1feee5269285c2fadcbce8624632b4b979dd5a04","Cargo.toml":"560eba8d5cf4f2c71cc06ef9145eb8f4c163a616cd6d08b031b1eae3448d8203","LICENSE":"508a77d2e7b51d98adeed32648ad124b7b30241a8e70b2e72c99f92d8e5874d1","README.md":"aaf0fcc62756694c61f26e02c8042a00c19f98c516aa62aa5b4779b5c7956c71","src/lib.rs":"514f0c716fba1e8fbeefc118848655ceafa22fd24787ca28c0e7c2143d5c7175"},"package":"b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"}

View File

@ -0,0 +1,2 @@
## v1.0.1 - March 18, 2019
- Add `LICENSE` file (#3)[https://github.com/TedDriggs/ident_case/issues/3]

View File

@ -1,8 +1,23 @@
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
name = "ident_case"
version = "1.0.0"
version = "1.0.1"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
license = "MIT/Apache-2.0"
description = "Utility for applying case rules to Rust identifiers."
repository = "https://github.com/TedDriggs/ident_case"
documentation = "https://docs.rs/ident_case/1.0.1"
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/TedDriggs/ident_case"
[badges.travis-ci]
repository = "TedDriggs/ident_case"

19
third_party/rust/ident_case/LICENSE vendored Normal file
View File

@ -0,0 +1,19 @@
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/TedDriggs/ident_case.svg?branch=master)](https://travis-ci.org/TedDriggs/ident_case)
Crate for manipulating case of identifiers in Rust programs.
# Features