Cargo.toml 392 B

123456789101112131415161718
  1. [package]
  2. name = "smoltcp"
  3. version = "0.1.0"
  4. authors = ["whitequark <[email protected]>"]
  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. std = ["libc"]
  14. logging = ["log"]
  15. default = ["std", "logging"]