Cargo.toml 947 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "update_rankings"
  3. version = "0.1.4"
  4. authors = ["deer <capreolina@protonmail.ch>"]
  5. edition = "2021"
  6. description = """
  7. Script for updating the “Unofficial ‘odd-jobbed rankings’” on the Oddjobs \
  8. website"""
  9. homepage = "https://oddjobs.codeberg.page/rankings/"
  10. repository = "https://codeberg.org/oddjobs/odd-jobbed_rankings"
  11. license = "CC0-1.0"
  12. keywords = ["maplestory", "rankings", "markdown", "web-api", "script"]
  13. publish = false
  14. [dependencies]
  15. anyhow = "1.0.86"
  16. futures = "0.3.30"
  17. serde = { version = "1.0.203", features = ["derive"] }
  18. serde_json = "1.0.117"
  19. tokio = { version = "1.37.0", features = ["full"] }
  20. [dependencies.reqwest]
  21. version = "0.12.4"
  22. default-features = false
  23. features = ["json", "charset", "http2", "native-tls"]
  24. [profile.release]
  25. opt-level = 3
  26. debug = false
  27. rpath = false
  28. lto = "fat"
  29. debug-assertions = false
  30. codegen-units = 1
  31. panic = "abort"
  32. incremental = false
  33. overflow-checks = false
  34. strip = true