flake reorg, nix integration testing

This commit is contained in:
Robin Appelman 2024-12-24 15:52:24 +01:00
commit 5cfd70d583
14 changed files with 3221 additions and 145 deletions

View file

@ -1,33 +1,38 @@
[package]
name = "demostf-client"
version = "0.4.3"
version = "0.4.4"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
edition = "2021"
description = "Api client for demos.tf"
license = "MIT OR Apache-2.0"
repository = "https://github.com/demostf/api-client"
readme = "README.md"
exclude = [ "tests/data/gully.dem" ]
exclude = ["tests/data/gully.dem"]
keywords = ["tf2", "demo"]
categories = ["api-bindings"]
rust-version = "1.81.0"
[dependencies]
serde = { version = "1.0.144", features = ["derive"] }
time = { version = "0.3.13", features = ["serde"] }
reqwest = { version = "0.11.11", default-features = false, features = ["json", "multipart", "stream"] }
thiserror = "1.0.32"
serde = { version = "1.0.216", features = ["derive"] }
time = { version = "0.3.37", features = ["serde"] }
reqwest = { version = "0.12.9", default-features = false, features = [
"json",
"multipart",
"stream",
] }
thiserror = "2.0.9"
hex = "0.4.3"
steamid-ng = "1.0.0"
bytes = "1.2.1"
futures-util = "0.3.23"
tracing = "0.1.36"
tinyvec = "1.6.0"
bytes = "1.9.0"
futures-util = "0.3.31"
tracing = "0.1.41"
tinyvec = { version = "1.8.1", features = ["alloc"] }
md5 = "0.7.0"
[dev-dependencies]
tokio = { version = "1.20.1", features = ["macros"] }
sqlx = { version = "0.6.1", features = ["postgres", "runtime-tokio-rustls"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
tokio = { version = "1.42.0", features = ["macros"] }
sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio-rustls"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[features]
default = ["default-tls"]