Cargo.toml 443 B

123456789101112131415161718
  1. [package]
  2. name = "ping"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "ping for dragonOS"
  6. authors = [ "smallc <[email protected]>" ]
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. anyhow = "1.0.86"
  10. clap = { version = "4.5.11", features = ["derive"] }
  11. crossbeam-channel = "0.5.13"
  12. pnet = "0.35.0"
  13. rand = "0.8.5"
  14. signal-hook = "0.3.17"
  15. socket2 = "0.5.7"
  16. thiserror = "1.0.63"