-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
52 lines (46 loc) · 1.23 KB
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
52
[[bin]]
name = "leetcode"
path = "src/bin/lc.rs"
[package]
name = "leetcode-cli"
version = "0.4.7"
authors = ["clearloop <tianyi.gc@gmail.com>"]
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.88"
tokio = { version = "1.45.1", features = ["full"] }
clap = { version = "4.5.39", features = ["cargo"] }
colored = "3.0.0"
dirs = "6.0.0"
env_logger = "0.11.6"
keyring = "3.6.2"
log = "0.4.27"
openssl = "0.10.73"
pyo3 = { version = "0.25.0", optional = true }
rand = "0.9.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
toml = "0.8.22"
regex = "1.11.1"
scraper = "0.23.1"
anyhow = "1.0.98"
clap_complete = "4.5.52"
thiserror = "2.0.12"
unicode-width = "0.2"
[dependencies.diesel]
version = "2.2.10"
features = ["sqlite"]
[dependencies.reqwest]
version = "0.12.18"
features = ["gzip", "json"]
[features]
pym = ["pyo3"]
[target.'cfg(target_family = "unix")'.dependencies]
nix = { version = "0.30.1", features = [ "signal" ] }