-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (32 loc) · 971 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
29
30
31
32
33
34
[package]
name = "racoon"
version = "0.1.9"
edition = "2021"
authors = ["Tej Magar"]
description = "Racoon is a fast, fully customizable web framework for Rust focusing on simplicity."
license = "MIT"
readme = "README.md"
documentation = "https://racoonframework.github.io"
repository = "https://github.com/racoonframework/racoon/"
keywords = ["web", "framework", "racoon", "http"]
categories = ["web-programming", "web-programming::http-server", "web-programming::websocket"]
[dependencies]
matchit = "0.8.0"
tokio = { version = "1.38.0", features = ["full"] }
log = "0.4.21"
regex = "1.10.4"
httparse = "1.8.0"
urlencoding = "2.1.3"
sha1 = "0.10.6"
base64 = "0.22.0"
serde = "1.0.199"
serde_json = "1.0.116"
uuid = { version = "1.8.0", features = ["v4"] }
tokio-rustls = "0.26.0"
rustls = "0.23.8"
rustls-pemfile = "2.1.2"
chrono = "0.4.38"
sqlx = {version = "0.8.3", features=["runtime-tokio", "sqlite"]}
rand = "0.9.0"
async-tempfile = "0.6.0"
[dev-dependencies]