init: 初始化rust项目
This commit is contained in:
20
Cargo.toml
Normal file
20
Cargo.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "leetcode-rust"
|
||||
version = "0.1.0"
|
||||
authors = ["alei <rayingecho@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
reqwest = { version = "0.11.22", features = ["json"] }
|
||||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
serde_derive = "1.0"
|
||||
rand = "0.6.5"
|
||||
regex = "1.3.4"
|
||||
futures = { version = "0.3.11", features = ["thread-pool"] }
|
||||
surf = "1.0.3"
|
||||
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
test = true
|
||||
Reference in New Issue
Block a user