-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 721 Bytes
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 = "rusty_express"
description = "A simple http server library written in Rust and provide Express-alike APIs. We know that Rust is hard and daunting, so we will make sure your server can be easy to use without fear!"
readme = "README.md"
documentation = "https://docs.rs/rusty_express/"
repository = "https://github.com/Chopinsky/Rusty_Express.git"
version = "0.4.6"
authors = ["Jacob Zuo <chopinsky@live.com>"]
license = "MIT"
edition = "2018"
[features]
default = ["session", "logger"]
session = []
logger = []
[dependencies]
chrono = "^0.4"
crossbeam-channel = "^0.3.0"
hashbrown = "^0.1"
lazy_static = "^1.0"
native-tls = "^0.2"
num_cpus = "^1.8"
parking_lot = "^0.10.0"
rand = "^0.4"
regex = "^0.2"