Cargo.toml 441 B

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