-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 845 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 = "mockser"
version = "0.1.6"
edition = "2021"
authors = ["Danil Akhtarov <daxartio@gmail.com>"]
description = "Configurable mock server for testing and development"
license = "MIT"
repository = "https://github.com/daxartio/mockser"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.5"
config = "0.14.0"
env_logger = { version = "0.11.5", features = ["unstable-kv", "humantime"]}
human-panic = "2.0.1"
humantime = "2.1.0"
log = { version = "0.4.22", features = ["kv", "kv_serde"]}
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.125"
tokio = { version = "1.39.2", features = ["rt-multi-thread", "signal"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[dev-dependencies]
hurl = "4.3.0"
hurl_core = "4.3.0"
rstest = "0.22.0"