0.3 with tokio 1.0 support

This commit is contained in:
Robin Appelman 2021-01-16 23:17:42 +01:00
commit edf195a72c

View file

@ -1,6 +1,6 @@
[package] [package]
name = "steam-resolve-vanity" name = "steam-resolve-vanity"
version = "0.2.0" version = "0.3.0"
authors = ["Robin Appelman <robin@icewind.nl>"] authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018" edition = "2018"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@ -9,11 +9,11 @@ description = "Resolve steam vanity urls"
[dependencies] [dependencies]
steamid-ng = "0.3.4" steamid-ng = "0.3.4"
reqwest = { version = "0.10.4", features = ["json"] } reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
thiserror = "1.0" thiserror = "1.0"
[dev-dependencies] [dev-dependencies]
dotenv = "0.15" dotenv = "0.15"
tokio = { version = "0.2", features = ["macros"] } tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }