-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.12 KB
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
[package]
name = "sofie"
version = "0.0.4-beta.1"
edition = "2021"
authors = ["Rogerio Araújo <rogerio.araujo@gmail.com>"]
repository = "https://github.com/ararog/sofie"
homepage = "https://github.com/ararog/sofie"
description = "🌟 The elegant full-stack web framework that makes Rust web development effortless"
readme = "README.md"
license = "MIT"
keywords = ["framework", "backend", "rest-server", "rest"]
publish = true
rust-version = "1.75.0"
[features]
default = ["tokio-rt", "http1", "tokio-rust-tls"]
tokio-rt = ["vetis/tokio-rt"]
smol-rt = ["vetis/smol-rt"]
tokio-rust-tls = ["vetis/tokio-rust-tls"]
smol-rust-tls = ["vetis/smol-rust-tls"]
http1 = ["vetis/http1"]
http2 = ["vetis/http2"]
http3 = ["vetis/http3"]
[dependencies]
bytes = "1.11.1"
clap = { version = "4.6.0", features = ["derive"] }
http = "1.4.0"
http-body-util = "0.1.3"
hyper = { version = "1.9.0", features = ["server"] }
hyper-util = "0.1.19"
log = "0.4.29"
thiserror = "2.0.18"
vetis = { version = "0.1.4-beta.6" }
tokio = { version = "1.51", features = ["macros", "rt-multi-thread"] }
toml = "1.1.2"
serde = "1.0.228"
matchit = "0.9.2"
env_logger = "0.11.10"