-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
34 lines (32 loc) · 895 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
[workspace]
resolver = "2"
members = [
"ohkami",
"ohkami_lib",
"ohkami_macros",
"ohkami_openapi",
]
exclude = [
"samples",
"benches",
"benches_rt/async-std",
"benches_rt/glommio",
"benches_rt/nio",
"benches_rt/smol",
"benches_rt/tokio",
"benches_rt/vs_actix-web",
]
[workspace.package]
version = "0.23.2"
edition = "2021"
authors = ["kanarus <[email protected]>"]
homepage = "https://crates.io/crates/ohkami"
repository = "https://github.com/ohkami-rs/ohkami"
readme = "README.md"
keywords = ["async", "http", "web", "server", "framework"]
categories = ["asynchronous", "web-programming::http-server", "network-programming", "wasm"]
license = "MIT"
[workspace.dependencies]
byte_reader = { version = "3.1", features = ["text"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }