123456789101112131415161718 |
- [package]
- name = "smoltcp"
- version = "0.1.0"
- authors = ["whitequark <[email protected]>"]
- license = "0BSD"
- [dependencies]
- byteorder = { version = "0.5", default-features = false }
- log = { version = "0.3", optional = true }
- libc = { version = "0.2.18", optional = true }
- [dev-dependencies]
- env_logger = "0.3"
- [features]
- std = ["libc"]
- logging = ["log"]
- default = ["std", "logging"]
|