1234567891011121314151617181920212223242526272829303132333435363738 |
- [package]
- name = "update_rankings"
- version = "0.1.4"
- authors = ["deer <capreolina@protonmail.ch>"]
- edition = "2021"
- description = """
- Script for updating the “Unofficial ‘odd-jobbed rankings’” on the Oddjobs \
- website"""
- homepage = "https://oddjobs.codeberg.page/rankings/"
- repository = "https://codeberg.org/oddjobs/odd-jobbed_rankings"
- license = "CC0-1.0"
- keywords = ["maplestory", "rankings", "markdown", "web-api", "script"]
- publish = false
- [dependencies]
- anyhow = "1.0.86"
- futures = "0.3.30"
- serde = { version = "1.0.203", features = ["derive"] }
- serde_json = "1.0.117"
- tokio = { version = "1.37.0", features = ["full"] }
- [dependencies.reqwest]
- version = "0.12.4"
- default-features = false
- features = ["json", "charset", "http2", "native-tls"]
- [profile.release]
- opt-level = 3
- debug = false
- rpath = false
- lto = "fat"
- debug-assertions = false
- codegen-units = 1
- panic = "abort"
- incremental = false
- overflow-checks = false
- strip = true
|