Cargo.toml 415 B

12345678910111213141516171819
  1. [package]
  2. name = "smoltcp"
  3. version = "0.1.0"
  4. authors = ["whitequark <whitequark@whitequark.org>"]
  5. license = "0BSD"
  6. [dependencies]
  7. byteorder = { version = "0.5", default-features = false }
  8. log = { version = "0.3", optional = true }
  9. libc = { version = "0.2.18", optional = true }
  10. [dev-dependencies]
  11. env_logger = "0.3"
  12. [features]
  13. use_std = ["libc"]
  14. use_alloc = []
  15. use_log = ["log"]
  16. default = ["use_std", "use_log"]