bulk updates

This commit is contained in:
TotallyNot 2022-09-18 23:48:36 +02:00
parent f452c44311
commit 5630e51adb
16 changed files with 1091 additions and 443 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "torn-key-pool"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/TotallyNot/torn-api.rs.git"
@ -18,7 +18,7 @@ tokio-runtime = [ "dep:tokio", "dep:rand" ]
actix-runtime = [ "dep:actix-rt", "dep:rand" ]
[dependencies]
torn-api = { path = "../torn-api", default-features = false, version = "0.4" }
torn-api = { path = "../torn-api", default-features = false, version = "0.5" }
async-trait = "0.1"
thiserror = "1"
@ -28,6 +28,7 @@ indoc = { version = "1", optional = true }
tokio = { version = "1", optional = true, default-features = false, features = ["time"] }
actix-rt = { version = "2", optional = true, default-features = false }
rand = { version = "0.8", optional = true }
futures = "0.3"
reqwest = { version = "0.11", default-features = false, features = [ "json" ], optional = true }
awc = { version = "3", default-features = false, optional = true }
@ -40,4 +41,3 @@ tokio = { version = "1.20.1", features = ["test-util", "rt", "macros"] }
tokio-test = "0.4.2"
reqwest = { version = "0.11", default-features = true }
awc = { version = "3", features = [ "rustls" ] }
futures = "0.3.24"