-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 884 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 884 Bytes
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
[package]
name = "hotfix-web"
description = "Web API and optional dashboard for the HotFIX engine"
version = "0.1.16"
authors.workspace = true
edition.workspace = true
license.workspace = true
readme = "README.md"
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
[lints]
workspace = true
[features]
ui = ["dep:hotfix-web-ui"]
[dependencies]
hotfix = { version = "0.11.0", path = "../hotfix" }
hotfix-web-ui = { version = "0.1.17", path = "../hotfix-web-ui", optional = true }
anyhow = { workspace = true }
async-trait = { workspace = true }
axum = { workspace = true }
displaydoc = { workspace = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
[dev-dependencies]
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tower = { workspace = true }