-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (67 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "grafton-server"
version = "0.1.0"
authors = ["Grant Sparks <[email protected]>"]
edition = "2021"
description = "grafton-server is an Axum-based webserver that provides a flexible and highly configurable platform for building web applications."
license = "Apache-2.0"
repository = "https://github.com/GrantSparks/grafton"
homepage = "https://www.grafton.ai"
categories = ["network-programming", "web-programming"]
keywords = ["api", "web", "http", "server", "networking"]
publish = false
readme = "README.md"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"build.rs",
"examples/**/*",
"benches/**/*",
"tests/**/*",
"src/**/*",
]
[dependencies]
askama_axum = "*"
axum-login = "*"
derivative = "2"
rustls-pemfile = "2"
rustls-pki-types = "1"
serde_json = "1"
thiserror = "1"
tokio-rustls = "*"
tracing = "*"
tracing-appender = "*"
tracing-subscriber = "*"
url = "2"
[dependencies.grafton-config]
path = "../grafton-config"
[dependencies.axum]
version = "*"
features = ["macros", "json"]
[dependencies.hyper]
version = "1"
features = ["http1", "http2", "server"]
[dependencies.hyper-util]
version = "*"
features = ["tokio", "server-auto"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.strum]
version = ">=0.26.1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["signal", "rt-multi-thread"]
[dependencies.tower]
version = "*"
features = ["util"]
[dependencies.tower-http]
version = "*"
features = ["fs"]
[dev-dependencies]
criterion = "*"
[[bench]]
name = "benchmark"
harness = false