Skip to content

Commit

Permalink
Merge pull request #62 from namecare/chore/release-2.3.1
Browse files Browse the repository at this point in the history
chore: Release 2.3.1
  • Loading branch information
tikhop authored Feb 3, 2025
2 parents 8ee6840 + 575aecd commit e72a9a5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
28 changes: 13 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "app-store-server-library"
description = "The Rust server library for the App Store Server API and App Store Server Notifications"
version = "2.3.0"
version = "2.3.1"
repository = "https://github.com/namecare/app-store-server-library-rust"
homepage = "https://github.com/namecare/app-store-server-library-rust"
authors = ["tkhp", "namecare"]
Expand All @@ -14,35 +14,33 @@ edition = "2021"
[dependencies]

# Cryptography
x509-parser = { version = "0.16.0", features = ["verify", "validate"] }
x509-parser = { version = "0.17.0", features = ["verify", "validate"] }
jsonwebtoken = { version = "9.3.0" }
ring = "0.17.8"
pem = "3.0.4"

# Serialization
serde = { version = "1.0.205", features = ["derive"] }
serde_json = { version = "1.0.122" }
serde_with = { version = "3.9.0", features = ["chrono"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.138" }
serde_with = { version = "3.12.0", features = ["chrono"] }
serde_repr = "0.1.19"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
chrono = { version = "0.4.38", features = ["serde"] }
uuid = { version = "1.12.1", features = ["serde", "v4"] }
chrono = { version = "0.4.39", features = ["serde"] }
base64 = "0.22.1"
asn1-rs = { version = "0.6.2", optional = true }
asn1-rs = { version = "0.7.0", optional = true }

# Networking
reqwest = { version = "0.12.5", features = ["json"], optional = true }
reqwest = { version = "0.12.12", features = ["json"], optional = true }

# Utils
thiserror = "1.0.63"
thiserror = "2.0.11"

# Tools
regex = { version = "1.10.6", optional = true }
url = "2.5.0"

regex = { version = "1.11.1", optional = true }

[dev-dependencies]
http = "1.1.0"
tokio = { version = "1.39.2", features = ["test-util", "macros"] }
http = "1.2.0"
tokio = { version = "1.43.0", features = ["test-util", "macros"] }
jsonwebtoken = { version = "9.3.0", features = ["use_pem"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Specify `app-store-server-library` in your project's `Cargo.toml` file, under th

```rust
[dependencies]
app-store-server-library = { version = "2.3.0", features = ["receipt-utility", "api-client"] }
app-store-server-library = { version = "2.3.1", features = ["receipt-utility", "api-client"] }
```
Check
[crates.io](https://crates.io/crates/app-store-server-library) for the latest version number.
Expand Down

0 comments on commit e72a9a5

Please sign in to comment.