Cargo.toml 716 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "rathole"
  3. version = "0.1.0"
  4. edition = "2021"
  5. authors = ["Yujia Qiao <code@rapiz.me>"]
  6. description = "A reverse proxy for NAT traversal"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [profile.bench]
  9. debug = 1
  10. [dependencies]
  11. tokio = { version = "1", features = ["full"] }
  12. bytes = { version = "1"}
  13. clap = "3.0.0-beta.5"
  14. toml = "0.5"
  15. serde = {version = "1.0", features = ["derive"]}
  16. anyhow = "1.0"
  17. ring = "0.16"
  18. bincode = "1"
  19. lazy_static = "1.4.0"
  20. hex = "0.4"
  21. rand = "0.8.0"
  22. backoff = {version="0.3.0", features=["tokio"]}
  23. tracing = "0.1"
  24. tracing-subscriber = "0.2"
  25. socket2 = "0.4"
  26. fdlimit = "0.2.1"
  27. tokio-native-tls = "0.3.0"
  28. async-trait = "0.1.52"