forked from clearloop/leetcode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (45 loc) · 1.21 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[[bin]]
name = "leetcode"
path = "src/bin/lc.rs"
[package]
name = "leetcode-cli"
version = "0.4.6"
authors = ["clearloop <[email protected]>"]
edition = "2021"
description = "Leetcode command-line interface in rust."
repository = "https://github.com/clearloop/leetcode-cli"
license = "MIT"
documentation = "https://docs.rs/leetcode_cli"
homepage = "https://github.com/clearloop/leetcode-cli"
keywords = ["cli", "games", "leetcode"]
readme = './README.md'
[dependencies]
async-trait = "0.1.85"
tokio = { version = "1.43.0", features = ["full"] }
clap = { version = "4.5.26", features = ["cargo"] }
colored = "3.0.0"
dirs = "6.0.0"
env_logger = "0.11.6"
keyring = "3.6.1"
log = "0.4.25"
openssl = "0.10.68"
pyo3 = { version = "0.23.4", optional = true }
rand = "0.8.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
toml = "0.8.19"
regex = "1.11.1"
scraper = "0.22.0"
anyhow = "1.0.95"
clap_complete = "4.5.42"
thiserror = "2.0.11"
[dependencies.diesel]
version = "2.2.6"
features = ["sqlite"]
[dependencies.reqwest]
version = "0.12.12"
features = ["gzip", "json"]
[features]
pym = ["pyo3"]
[target.'cfg(target_family = "unix")'.dependencies]
nix = { version = "0.29.0", features = [ "signal" ] }