mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-01-25 18:27:27 -08:00
Release 2.61.0
This commit is contained in:
parent
9ede8f23bb
commit
bb8bd229f0
1 changed files with 25 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "riven"
|
name = "riven"
|
||||||
version = "2.60.0"
|
version = "2.61.0"
|
||||||
authors = ["Mingwei Samuel <mingwei.samuel@gmail.com>"]
|
authors = ["Mingwei Samuel <mingwei.samuel@gmail.com>"]
|
||||||
repository = "https://github.com/MingweiSamuel/Riven"
|
repository = "https://github.com/MingweiSamuel/Riven"
|
||||||
description = "Riot Games API Library"
|
description = "Riot Games API Library"
|
||||||
|
@ -34,7 +34,10 @@ deny-unknown = [ "deny-unknown-fields", "deny-unknown-enum-variants" ]
|
||||||
deny-unknown-fields = []
|
deny-unknown-fields = []
|
||||||
# If enabled, deserialization of unknown enum variants will cause an error
|
# If enabled, deserialization of unknown enum variants will cause an error
|
||||||
# instead of being deserialized to `UNKNOWN` or other integer variants.
|
# instead of being deserialized to `UNKNOWN` or other integer variants.
|
||||||
deny-unknown-enum-variants = [ "deny-unknown-enum-variants-strings", "deny-unknown-enum-variants-integers" ]
|
deny-unknown-enum-variants = [
|
||||||
|
"deny-unknown-enum-variants-strings",
|
||||||
|
"deny-unknown-enum-variants-integers",
|
||||||
|
]
|
||||||
deny-unknown-enum-variants-strings = []
|
deny-unknown-enum-variants-strings = []
|
||||||
deny-unknown-enum-variants-integers = []
|
deny-unknown-enum-variants-integers = []
|
||||||
|
|
||||||
|
@ -51,7 +54,10 @@ memo-map = "0.3"
|
||||||
metrics = { version = "0.24", optional = true }
|
metrics = { version = "0.24", optional = true }
|
||||||
num_enum = "0.5"
|
num_enum = "0.5"
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
reqwest = { version = "0.11", default-features = false, features = [ "gzip", "json" ] }
|
reqwest = { version = "0.11", default-features = false, features = [
|
||||||
|
"gzip",
|
||||||
|
"json",
|
||||||
|
] }
|
||||||
scan_fmt = { version = "0.2", default-features = false }
|
scan_fmt = { version = "0.2", default-features = false }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
Loading…
Reference in a new issue