Update minimal-lexical to 0.2.1 am: d3868b8b64 am: 9611f1ea5b am: 2b39fb4058

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/minimal-lexical/+/2004418

Change-Id: Ifeb47382929db28464dcd437c6a329f36504663a
diff --git a/.cargo_vcs_info.json b/.cargo_vcs_info.json
index 56256e7..33bf0d3 100644
--- a/.cargo_vcs_info.json
+++ b/.cargo_vcs_info.json
@@ -1,5 +1,5 @@
 {
   "git": {
-    "sha1": "f6399813f02b7a55a875672c284ef3f69c2a34d6"
+    "sha1": "e997c46656ebe83e696b866bd954da1fa3f64eef"
   }
 }
diff --git a/Android.bp b/Android.bp
index 1012ded..f9f123a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -45,7 +45,7 @@
     host_supported: true,
     crate_name: "minimal_lexical",
     cargo_env_compat: true,
-    cargo_pkg_version: "0.2.0",
+    cargo_pkg_version: "0.2.1",
     srcs: ["src/lib.rs"],
     edition: "2018",
     features: [
@@ -58,7 +58,7 @@
     name: "minimal-lexical_test_defaults",
     crate_name: "minimal_lexical",
     cargo_env_compat: true,
-    cargo_pkg_version: "0.2.0",
+    cargo_pkg_version: "0.2.1",
     test_suites: ["general-tests"],
     auto_gen_config: true,
     edition: "2018",
diff --git a/CHANGELOG b/CHANGELOG
index d38c8d8..b1fd38a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,14 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [0.1.4] 2021-10-02
+### Added
+- Missing license details for `src/bellerophon.rs`.
+
+## [0.2.0] 2021-09-10
+### Changed
+- `no_alloc` feature flag was replaced with an `alloc` feature flag.
+
 ## [0.1.3] 2021-09-04
 ### Added
 - Added the `compact` feature, which sacrifices performance for smaller binary sizes.
diff --git a/Cargo.toml b/Cargo.toml
index 1f1f01d..b9b52cb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,17 +3,16 @@
 # 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
+# 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)
+# If you are reading this file be aware that the original Cargo.toml
+# will likely look very different (and much more reasonable).
+# See Cargo.toml.orig for the original contents.
 
 [package]
 edition = "2018"
 name = "minimal-lexical"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
 exclude = ["assets/*", "ci/*", "docs/*", "etc/*", "fuzz/*", "examples/*", "scripts/*"]
 autoexamples = false
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index e7e996c..ab9843d 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -10,7 +10,7 @@
 name = "minimal-lexical"
 readme = "README.md"
 repository = "https://github.com/Alexhuszagh/minimal-lexical"
-version = "0.2.0"
+version = "0.2.1"
 exclude = [
     "assets/*",
     "ci/*",
diff --git a/METADATA b/METADATA
index f2a2df0..6602fa3 100644
--- a/METADATA
+++ b/METADATA
@@ -1,7 +1,5 @@
 name: "minimal-lexical"
-description:
-    "Fast float parsing conversion routines."
-
+description: "Fast float parsing conversion routines."
 third_party {
   url {
     type: HOMEPAGE
@@ -9,9 +7,13 @@
   }
   url {
     type: ARCHIVE
-    value: "https://static.crates.io/crates/minimal-lexical/minimal-lexical-0.2.0.crate"
+    value: "https://static.crates.io/crates/minimal-lexical/minimal-lexical-0.2.1.crate"
   }
-  version: "0.2.0"
-  last_upgrade_date { year: 2021 month: 9 day: 23 }
+  version: "0.2.1"
   license_type: NOTICE
-}
\ No newline at end of file
+  last_upgrade_date {
+    year: 2022
+    month: 3
+    day: 1
+  }
+}
diff --git a/README.md b/README.md
index d14c3ad..7805296 100644
--- a/README.md
+++ b/README.md
@@ -95,7 +95,7 @@
 
 # License
 
-Minimal-lexical is dual licensed under the Apache 2.0 license as well as the MIT license. See the LICENCE-MIT and the LICENCE-APACHE files for the licenses. 
+Minimal-lexical is dual licensed under the Apache 2.0 license as well as the MIT license. See the [LICENSE.md](LICENSE.md) file for full license details.
 
 # Contributing