-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1012 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
35
[package]
name = "contraband"
version = "0.1.2"
authors = ["Buster Styren <buster.styren@gmail.com>"]
edition = "2018"
repository = "https://github.com/styren/contraband.git"
description = "Contraband is a web framework for building modular and scalable applications"
categories = ["network-programming", "asynchronous", "web-programming", "web-programming::http-server", "web-programming::websocket"]
keywords = ["http", "web", "framework", "async"]
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/contraband/"
homepage = "https://docs.rs/contraband/"
[dependencies]
contraband_codegen = "^0.1.0"
actix-web = { version = "^2.0.0", features = ["rustls"] }
actix-rt = "^1.0.0"
listenfd = "0.3.3"
futures-util = "0.3.5"
rustls = { version = "0.17.0", optional = true }
actix-tls = "1.0.0"
toml = "0.5.6"
chrono = "0.4.12"
actix-http = "1.0.1"
[features]
default = ["rustls"]
[workspace]
members = [
"contraband_codegen",
"contraband_diesel",
"examples/diesel",
]