Cargo.toml 724 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "smoltcp"
  3. version = "0.1.0"
  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. license = "0BSD"
  12. [dependencies]
  13. byteorder = { version = "0.5", default-features = false }
  14. log = { version = "0.3", optional = true }
  15. libc = { version = "0.2.18", optional = true }
  16. [dev-dependencies]
  17. env_logger = "0.3"
  18. [features]
  19. use_std = ["libc"]
  20. use_alloc = []
  21. use_log = ["log"]
  22. default = ["use_std", "use_log"]