Cargo.toml 264 B

123456789101112
  1. [package]
  2. name = "smoltcp"
  3. version = "0.1.0"
  4. authors = ["whitequark <[email protected]>"]
  5. [dependencies]
  6. byteorder = { version = "0.5", default-features = false }
  7. libc = { version = "0.2.18", optional = true }
  8. [features]
  9. std = ["libc"]
  10. default = ["std"]