forked from salvo-rs/salvo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (60 loc) · 1.48 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
[workspace]
members = ["*"]
exclude = ["db-prisma-orm", "target", "temp"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Chrislearn Young <chrislearn@hotmail.com>"]
edition = "2021"
publish = false
rust-version = "1.70"
description = """
Salvo is a powerful and simple Rust web server framework.
"""
homepage = "https://salvo.rs"
repository = "https://github.com/salvo-rs/salvo"
documentation = "https://docs.rs/salvo/"
readme = "./README.md"
keywords = ["http", "async", "web", "framework", "server"]
license = "MIT OR Apache-2.0"
categories = ["web-programming::http-server", "web-programming::websocket", "network-programming", "asynchronous"]
[workspace.dependencies]
anyhow = "1"
rbatis = "4.3"
rbdc = "4.3"
rbdc-mysql = "4.3"
rbs = "4.3"
async-std = "1.12"
async-trait = "0.1"
hyper = "=1.0.0-rc.4"
sea-orm = "0.12"
sea-orm-migration = "0.12"
eyre = "0.6"
tera = "1.3"
futures = "0.3"
opentelemetry = "0.21.0"
opentelemetry-http = "0.10.0"
opentelemetry-jaeger = "0.20.0"
opentelemetry-prometheus = "0.14.0"
opentelemetry_sdk = "0.21"
utoipa = "3.3.0"
utoipa-swagger-ui = "*"
tokio-stream = "0.1.14"
async-stream = "0.3.5"
futures-util = { version = "0.3", default-features = true }
jsonwebtoken = "9"
once_cell = "1"
parking_lot = "0.12"
salvo = { path = "../crates/salvo", default-features = true }
serde = "1"
serde_json = "1"
thiserror = "1"
tokio = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-test = "0.2.1"
url = "2"
chrono = "0.4"
sqlx = "0.7"
rust-embed = "8"
time = "0.3"