-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
27 lines (26 loc) · 885 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
[package]
name = "graphul"
version = "1.0.1"
edition = "2021"
license = "MIT"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
keywords = ["http", "web", "framework"]
description = "Optimize, speed, scale your microservices and save money 💵"
homepage = "https://graphul-rs.github.io/"
documentation = "https://graphul-rs.github.io/"
repository = "https://github.com/graphul-rs/graphul"
readme = "README.md"
[dependencies]
hyper = { version = "0.14", features = ["full"] }
axum = { version = "0.6", features = ["multipart", "ws", "headers"] }
askama = "0.11"
futures = "0.3.24"
tower = { version = "0.4", features = ["limit", "util"] }
num_cpus = "1.13.1"
async-trait = "0.1.58"
tower-layer = "0.3"
serde_path_to_error = "0.1.8"
serde_json = "1.0.86"
serde = "1.0"
serde_urlencoded = "0.7"
tower-http = { version = "0.3.5", features = ["full"] }