Cargo.toml 281 B

12345678910111213
  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. libc = { version = "0.2.18", optional = true }
  9. [features]
  10. std = ["libc"]
  11. default = ["std"]