diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c7a6c9..60c6842 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: include: - os: ubuntu-22.04 target: x86_64-unknown-linux-gnu - channel: 1.81.0 + channel: 1.88.0 - os: ubuntu-22.04 target: x86_64-unknown-linux-gnu channel: stable diff --git a/Cargo.toml b/Cargo.toml index 0bf7a2a..b5d4b22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plist" -version = "1.8.0" +version = "1.9.0" authors = ["Ed Barnard "] description = "A rusty plist parser. Supports Serde serialization." license = "MIT" @@ -9,7 +9,7 @@ documentation = "https://docs.rs/plist/" keywords = ["plist", "parser"] categories = ["config", "encoding", "parser-implementations"] edition = "2021" -rust-version = "1.81" +rust-version = "1.88.0" exclude = ["/tests/data"] [features] @@ -18,7 +18,7 @@ enable_unstable_features_that_may_break_with_minor_version_bumps = [] [dependencies] base64 = "0.22.0" -time = { version = "0.3.30", features = ["parsing", "formatting"] } +time = { version = "0.3.47", features = ["parsing", "formatting"] } indexmap = "2.1.0" quick_xml = { package = "quick-xml", version = "0.38.0" } serde = { version = "1.0.2", optional = true }