-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
26 lines (24 loc) · 867 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
[package]
name = "parviocula"
version = "0.0.3"
edition = "2021"
keywords = ["asgi", "axum"]
description = "A simple ASGI server aimed at helping the transition from python ASGI applications to an Axum application"
homepage = "https://github.com/tristan/parviocula"
repository = "https://github.com/tristan/parviocula"
authors = ["Tristan King <parviocula@tristan.rs>"]
license = "MIT"
readme = "README.md"
[dependencies]
axum = { version = "0.5.16", features = ["headers"] }
futures = "0.3.24"
hyper = "0.14.20"
percent-encoding = "2.2.0"
pyo3 = { version = "0.17.2" }
pyo3-asyncio = { version = "0.17.0", features = ["tokio-runtime"] }
tokio = { version = "1.21.2", features = ["sync"] }
tracing = { version = "0.1.37", optional = true }
[features]
tracing = ["dep:tracing"]
extension-module = ["pyo3/extension-module"]
auto-initialize = ["pyo3/auto-initialize"]