A cloudflare backed DDNS service written in Rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
459 B

  1. [package]
  2. name = "rsddns"
  3. version = "0.1.0"
  4. authors = ["Drew Short <warrick@sothr.com>"]
  5. [profile.release]
  6. panic = "abort"
  7. lto = true
  8. codegen-units = 1
  9. incremental = false
  10. [dependencies]
  11. bytes = "0.4.10"
  12. clap = "2.32.0"
  13. log = "0.4.0"
  14. env_logger = "0.5.13"
  15. num_cpus = "1.0"
  16. yaml-rust = "0.4.0"
  17. serde = "1.0.78"
  18. serde_derive = "1.0.78"
  19. futures = "0.1.24"
  20. actix-web = "0.7.7"
  21. cloudflare = { git = "https://github.com/nocduro/cloudflare-rs", branch = "master" }