Cargo.toml 426 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "tcp-proxy"
  3. version = "0.0.1"
  4. edition = "2021"
  5. license = "MPL-2.0"
  6. authors = ["ZeroTier, Inc. <[email protected]>"]
  7. [features]
  8. [dependencies]
  9. socket2 = "^0"
  10. #tokio-uring = "0.5.0"
  11. tokio = { version = "^1", default-features = false, features = [
  12. "fs",
  13. "io-util",
  14. "io-std",
  15. "net",
  16. "rt",
  17. "signal",
  18. "sync",
  19. "time",
  20. "macros",
  21. "rt-multi-thread",
  22. ] }
  23. [dev-dependencies]