Cargo.toml 778 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "ports-sniffer"
  3. version = "0.1.3"
  4. edition = "2021"
  5. authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
  6. description = "A simple port sniffer(scanner) implementation with 🦀"
  7. license = "MIT"
  8. include = [
  9. "src/**/*.rs",
  10. "Cargo.toml",
  11. "LICENSE",
  12. "README.md",
  13. ]
  14. keywords = [
  15. "ports-scanner",
  16. "scanner",
  17. "ports-sniffer"
  18. ]
  19. repository = "https://github.com/anas-elgarhy/ports-sniffer"
  20. homepage = "https://github.com/anas-elgarhy/ports-sniffer"
  21. # See https://crates.io/category_slugs for more categories
  22. categories = [
  23. "command-line-utilities",
  24. "network-programming"
  25. ]
  26. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  27. [dependencies]
  28. colored = "2.0.0"
  29. local-ip-address = "0.5.1"