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.

23 lines
474 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"
  12. clap = "2.32"
  13. log = "0.4"
  14. env_logger = "0.6"
  15. num_cpus = "1.8"
  16. serde = "1.0"
  17. serde_derive = "1.0"
  18. serde_yaml = "0.8"
  19. futures = "0.1"
  20. actix-web = "0.7"
  21. lazy_static = "1.2.0"
  22. cloudflare = { git = "https://gitlab.sothr.com:9142/github/cloudflare-rs.git", branch = "develop" }