[package]
name = "sofie"
version = "0.0.3"
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.64.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.0"
clap = { version = "4.5.55", features = ["derive"] }
http = "1.4.0"
http-body-util = "0.1.3"
hyper = { version = "1.8.1", features = ["server"] }
hyper-util = "0.1.19"
log = "0.4.29"
thiserror = "2.0.18"
vetis = { version = "0.1.4-beta.2" }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
toml = "0.7.6"
serde = "1.0.228"
env_logger = "0.10.2"
matchit = "0.8.6"