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.

24 lines
491 B

  1. [package]
  2. name = "rsddns"
  3. version = "0.1.0"
  4. authors = ["Drew Short <warrick@sothr.com>"]
  5. edition = "2018"
  6. [profile.release]
  7. panic = "abort"
  8. lto = true
  9. codegen-units = 1
  10. incremental = false
  11. [dependencies]
  12. bytes = "0.4"
  13. clap = "2.32"
  14. log = "0.4"
  15. env_logger = "0.6"
  16. num_cpus = "1.8"
  17. serde = "1.0"
  18. serde_derive = "1.0"
  19. serde_yaml = "0.8"
  20. futures = "0.1"
  21. actix-web = "0.7"
  22. lazy_static = "1.2.0"
  23. cloudflare = { git = "https://gitlab.sothr.com:9142/github/cloudflare-rs.git", branch = "develop" }