-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (42 loc) · 1.37 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
[package]
name = "tls-xb"
authors = ["Yiheng He <[email protected]>"]
license = "GPL-3.0"
description = "tls-xb is a cli tool that fetches scores and GPA from https://tsinglanstudent.schoolis.cn"
homepage = "https://github.com/hey2022/tls-xb"
repository = "https://github.com/hey2022/tls-xb"
documentation = "https://github.com/hey2022/tls-xb"
keywords = ["cli"]
categories = ["command-line-interface"]
version = "0.4.1"
edition = "2021"
[package.metadata.wix]
upgrade-guid = "48FD9800-A2AC-4FE4-92F7-4AE2F3DDE16E"
path-guid = "73D0D0BE-E1CF-47BF-A9FA-B91C1005AE7B"
license = false
eula = false
[dependencies]
base64 = "0.22.1"
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive"] }
colored = "2.1.0"
confy = "0.6.1"
env_logger = "0.11.5"
futures = "0.3.31"
image = { version = "0.25.5", default-features = false, features = ["rayon", "png"]}
itertools = "0.13.0"
log = "0.4.22"
md5 = "0.7.0"
reqwest = { version = "0.12.9", default-features = false, features = ["json", "cookies", "rustls-tls"] }
rpassword = "7.3.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tabled = { version = "0.17", features = ["ansi"] }
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] }
viuer = { version = "0.9.1" }
[features]
sixel = ["viuer/sixel"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"