Cargo.toml 1012 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "smoltcp"
  3. version = "0.4.0-pre"
  4. authors = ["whitequark <[email protected]>"]
  5. description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
  6. documentation = "https://docs.rs/smoltcp/"
  7. homepage = "https://github.com/m-labs/smoltcp"
  8. repository = "https://github.com/m-labs/smoltcp.git"
  9. readme = "README.md"
  10. keywords = ["ip", "tcp", "udp", "ethernet", "network"]
  11. categories = ["embedded"]
  12. license = "0BSD"
  13. [dependencies]
  14. byteorder = { version = "1.0", default-features = false }
  15. managed = { version = "0.3.0", default-features = false }
  16. log = { version = "0.3", default-features = false, optional = true }
  17. libc = { version = "0.2.18", optional = true }
  18. [dev-dependencies]
  19. log = "0.3"
  20. env_logger = "0.4"
  21. getopts = "0.2"
  22. [features]
  23. std = ["managed/std", "libc"]
  24. alloc = ["managed/alloc"]
  25. collections = ["managed/collections"]
  26. verbose = []
  27. default = ["std", "log", "verbose"]
  28. [[example]]
  29. name = "tcpdump"
  30. [[example]]
  31. name = "server"
  32. [[example]]
  33. name = "client"