From 5a3f354467ae91152facc9a60e2a3126b6f0dfc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20B=C3=BCsch?= Date: Thu, 12 Mar 2026 17:34:23 +1100 Subject: [PATCH] chore: Upgrade `phf` version --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d012a47..427816b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,19 +2,19 @@ name = "rust_iso3166" version = "0.1.14" edition = "2021" -description="ISO 3166-1 (Codes for the representation of names of countries and their subdivisions – Part 1: Country codes) is a standard defining codes for the names of countries, dependent territories, and special areas of geographical interest. It is the first part of the ISO 3166 standard published by the International Organization for Standardization." -repository="https://github.com/rust-iso/rust_iso3166" -license="Apache-2.0" +description = "ISO 3166-1 (Codes for the representation of names of countries and their subdivisions – Part 1: Country codes) is a standard defining codes for the names of countries, dependent territories, and special areas of geographical interest. It is the first part of the ISO 3166 standard published by the International Organization for Standardization." +repository = "https://github.com/rust-iso/rust_iso3166" +license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html exclude = ["src/*.py"] documentation = "https://docs.rs/rust_iso3166/" -keywords=["ISO3166", "ISO3166-1", "ISO3166-2", "ISO3166-3"] +keywords = ["ISO3166", "ISO3166-1", "ISO3166-2", "ISO3166-3"] [lib] crate-type = ["cdylib", "rlib"] [dependencies] -phf = { version = "^0.11.1", features = ["macros"] } +phf = { version = "^0.13.1", features = ["macros"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] prettytable-rs = "^0.10"