toml: Sync `Cargo.toml` version with `extension.toml` (#9973)

Marshall Bowers created

This PR syncs the version number in the `Cargo.toml` with the one in
`extension.toml` for the `toml` extension, since they had gotten
out-of-sync.

Release Notes:

- N/A

Change summary

Cargo.lock                 | 2 +-
extensions/toml/Cargo.toml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

Cargo.lock 🔗

@@ -12739,7 +12739,7 @@ dependencies = [
 
 [[package]]
 name = "zed_toml"
-version = "0.0.1"
+version = "0.0.2"
 dependencies = [
  "zed_extension_api 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 ]

extensions/toml/Cargo.toml 🔗

@@ -1,6 +1,6 @@
 [package]
 name = "zed_toml"
-version = "0.0.1"
+version = "0.0.2"
 edition = "2021"
 publish = false
 license = "Apache-2.0"