-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 979 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 979 Bytes
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
[package]
name = "tmlapis"
version = "12.0.2"
edition = "2024"
authors = ["NotLe0n"]
description = "a series of tmodloader apis to help make dynamic websites and tools"
readme = "README.md"
repository = "https://github.com/NotLe0n/tMLAPIs"
license = "GPL-2.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.2", features = ["json"] }
reqwest = { version = "0.11.11", features = ["json"] }
scraper = "0.18.1"
rocket-cache-response = "0.6.2"
urlencoding = "2.1.2"
log = "0.4"
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "postgres", "chrono", "json" ] }
chrono = { version = "0.4.43", features = ["serde"] }
clokwerk = "0.4.0"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
strip = true # Strip symbols from binary*