prepare for publishing

This commit is contained in:
TotallyNot 2022-09-08 14:38:05 +02:00
parent 539700ad75
commit 7f103a2435
8 changed files with 36 additions and 22 deletions

View file

@ -2,6 +2,10 @@
name = "torn-key-pool"
version = "0.2.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/TotallyNot/torn-api.rs.git"
homepage = "https://github.com/TotallyNot/torn-api.rs.git"
description = "A generalizes API key pool for torn-api"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -12,7 +16,7 @@ reqwest = [ "dep:reqwest", "torn-api/reqwest" ]
awc = [ "dep:awc", "torn-api/awc" ]
[dependencies]
torn-api = { path = "../torn-api", default-features = false }
torn-api = { path = "../torn-api", default-features = false, version = "0.3" }
async-trait = "0.1"
thiserror = "1"
@ -25,9 +29,9 @@ awc = { version = "3", default-features = false, optional = true }
[dev-dependencies]
torn-api = { path = "../torn-api", features = [ "reqwest" ] }
sqlx = { version = "*", features = [ "runtime-tokio-rustls" ] }
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" ] }
dotenv = "0.15.0"
tokio = { version = "1.20.1", features = ["test-util", "rt", "macros"] }
tokio-test = "0.4.2"
reqwest = { version = "*", default-features = true }
awc = { version = "*", features = [ "rustls" ] }
reqwest = { version = "0.11", default-features = true }
awc = { version = "3", features = [ "rustls" ] }