Skip to content

Commit

Permalink
Merge pull request #56 from namecare/chore/release-2.2.0
Browse files Browse the repository at this point in the history
chore: Release 2.2.0
  • Loading branch information
tikhop committed Aug 9, 2024
2 parents b768505 + 1a20cda commit ac1a415
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 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.1.0"
version = "2.2.0"
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 @@ -17,32 +17,32 @@ edition = "2021"
x509-parser = { version = "0.16.0", features = ["verify", "validate"] }
jsonwebtoken = { version = "9.3.0" }
ring = "0.17.8"
pem = "3.0.3"
pem = "3.0.4"

# Serialization
serde = { version = "1.0.201", features = ["derive"] }
serde_json = { version = "1.0.117" }
serde_with = { version = "3.8.1", features = ["chrono"] }
serde = { version = "1.0.205", features = ["derive"] }
serde_json = { version = "1.0.122" }
serde_with = { version = "3.9.0", features = ["chrono"] }
serde_repr = "0.1.19"
uuid = { version = "1.8.0", features = ["serde", "v4"] }
uuid = { version = "1.10.0", features = ["serde", "v4"] }
chrono = { version = "0.4.38", features = ["serde"] }
base64 = "0.22.1"
asn1-rs = { version = "0.6.1", optional = true }
asn1-rs = { version = "0.6.2", optional = true }

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

# Utils
thiserror = "1.0.60"
thiserror = "1.0.63"

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


[dev-dependencies]
http = "1.1.0"
tokio = { version = "1.37.0", features = ["test-util", "macros"] }
tokio = { version = "1.39.2", 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.1.0", features = ["receipt-utility", "api-client"] }
app-store-server-library = { version = "2.2.0", 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 ac1a415

Please sign in to comment.