forked from JosephLenton/axum-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 1.12 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "axum-test"
authors = ["Joseph Lenton <josephlenton@gmail.com>"]
version = "12.2.0"
edition = "2021"
license = "MIT"
description = "For spinning up and testing Axum servers"
keywords = ["testing", "test", "axum"]
categories = ["web-programming::http-server", "development-tools::testing"]
repository = "https://github.com/JosephLenton/axum-test"
documentation = "https://docs.rs/axum-test/latest/axum-test"
readme = "README.md"
[dependencies]
auto-future = "1.0.0"
axum = "0.6.19"
anyhow = "1.0.72"
bytes = "1.4.0"
cookie = "0.17.0"
http = "0.2.9"
hyper = { version = "0.14.27", features = ["client", "http1"] }
lazy_static = "1.4.0"
portpicker = "0.1.1"
serde = { version = "1.0.178" }
serde_json = "1.0.104"
serde_urlencoded = "0.7.1"
smallvec = "1.11.0"
tokio = { version = "1.29.1", features = ["rt", "time"] }
url = "2.4.0"
[dev-dependencies]
axum-extra = { version = "0.7.5", features = ["cookie"] }
local-ip-address = "0.5.4"
regex = "1.9.1"
serde-email = { version = "2.1.0", features = ["serde"] }
tokio = { version = "1.29.1", features = ["rt", "rt-multi-thread", "time", "macros"] }
[[example]]
name = "example-todo"