-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Cargo.toml
34 lines (32 loc) · 918 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
[package]
name = "rust-quiz"
version = "0.0.6"
authors = ["David Tolnay <dtolnay@gmail.com>"]
description = "Medium to hard Rust questions with complete explanations"
edition = "2021"
exclude = ["rust-quiz"]
homepage = "https://dtolnay.github.io/rust-quiz"
license = "CC-BY-SA-4.0"
publish = false
repository = "https://github.com/dtolnay/rust-quiz"
[dependencies]
clap = { version = "4", features = ["deprecated", "derive"] }
futures = "0.3"
http = "1"
hyper = { version = "1", features = ["http1", "http2", "server"] }
hyper-staticfile = "0.10"
hyper-util = { version = "0.1", features = ["tokio"] }
num_cpus = "1.0"
oqueue = "0.1"
parking_lot = "0.12"
pin-project = "1.0"
pulldown-cmark = "0.12"
rayon = "1.0"
regex = "1.0"
remain = "0.2"
serde = "1.0"
serde_json = "1.0"
thiserror = "2"
tokio = { version = "1.0", features = ["full", "macros"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]