summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 34f1a5028d628bb4816001a922b8b86b7e572ea2 (plain) (blame)
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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "rin"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Access due.moe/schedule from your terminal"
readme = "README.md"
homepage = "https://github.com/Fuwn/rin"
repository = "https://github.com/Fuwn/rin"
license = "GPL-3.0-only"
keywords = ["rust", "anime"]
categories = ["web-programming"]

# Slower builds, faster executables
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3

[dependencies]
# Automated Web Scraping
thirtyfour = "0.31.0"

# Asyncronous Runtime
tokio = { version = "1.35.1", features = ["full"] }

# HTML & Markdown
html2md = "0.2.14"
mdcat = "2.1.0"

# Serialisation & JSON
serde_json = "1.0.111"
serde = { version = "1.0.111", features = ["derive"] }

# Time
chrono = "0.4.31"

# Networking
port_scanner = "0.1.5"