-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 746 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
27
28
29
30
[package]
name = "leetcode"
version = "0.1.0"
authors = ["bestgopher <84328409@qq.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["./sort"]
[dependencies]
git2 = "0.14.4"
reqwest = { version = "0.11.11", features = ["json"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
clap = "3.0.0-beta.2"
tera = "1.12.1"
lazy_static = "1.4.0"
regex = "1"
rand = "0.8.4"
tokio = { version = "1.33.0", features = ["fs", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.14", features = ["fs"] }
[[bin]]
name = "leetcode"
path = "src/main.rs"
[dev-dependencies]
tokio = { version = "1.33.0", features = ["macros", "rt"] }