Cargo.toml 932 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "smoltcp"
  3. version = "0.2.1"
  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 = "1.0", default-features = false }
  14. managed = { version = "0.2.1", default-features = false }
  15. log = { version = "0.3", default-features = false, optional = true }
  16. libc = { version = "0.2.18", optional = true }
  17. [dev-dependencies]
  18. env_logger = "0.4"
  19. getopts = "0.2"
  20. [features]
  21. use_std = ["managed/use_std", "libc"]
  22. use_alloc = ["managed/use_alloc"]
  23. use_collections = ["managed/use_collections"]
  24. use_log = ["log"]
  25. verbose = []
  26. default = ["use_std", "use_log", "verbose"]