leetcode/Cargo.toml
2024-04-14 12:20:08 +08:00

21 lines
455 B
TOML

[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.8.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