Cargo.toml 848 B

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