forked from cloudwalk/axum-test-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 842 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "axum-test-helper"
version = "0.1.1"
edition = "2021"
categories = ["axum", "test", "web-testing"]
description = "Extra utilities for axum"
homepage = "https://github.com/cloudwalk/axum-test-helper"
keywords = ["axum", "test", "test-framework"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/cloudwalk/axum-test-helper"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.5"
reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false }
http = "0.2.5"
http-body = "0.4.4"
bytes = "1.0"
tower = "0.4.11"
tower-service = "0.3"
serde = { version = "1.0.136", features = ["derive"] }
tokio = { version = "1" }
hyper = "0.14.14"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }