Cargo.toml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. [package]
  2. name = "smoltcp"
  3. version = "0.4.0"
  4. authors = ["whitequark <whitequark@whitequark.org>"]
  5. description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
  6. documentation = "https://docs.rs/smoltcp/"
  7. homepage = "https://github.com/m-labs/smoltcp"
  8. repository = "https://github.com/m-labs/smoltcp.git"
  9. readme = "README.md"
  10. keywords = ["ip", "tcp", "udp", "ethernet", "network"]
  11. categories = ["embedded"]
  12. license = "0BSD"
  13. [dependencies]
  14. byteorder = { version = "1.0", default-features = false }
  15. log = { version = "0.3", default-features = false, optional = true }
  16. libc = { version = "0.2.18", optional = true }
  17. [dependencies.managed]
  18. git = "https://github.com/m-labs/rust-managed.git"
  19. rev = "629a6786a1cf1692015f464ed16c04eafa5cb8d1"
  20. default-features = false
  21. features = ["map"]
  22. [dev-dependencies]
  23. env_logger = "0.4"
  24. getopts = "0.2"
  25. rand = "0.3"
  26. url = "1.0"
  27. [features]
  28. std = ["managed/std"]
  29. alloc = ["managed/alloc"]
  30. verbose = []
  31. "phy-raw_socket" = ["std", "libc"]
  32. "phy-tap_interface" = ["std", "libc"]
  33. "proto-ipv6" = []
  34. "socket-raw" = []
  35. "socket-udp" = []
  36. "socket-tcp" = []
  37. "socket-icmp" = []
  38. default = [
  39. "std", "log", # needed for `cargo test --no-default-features --features default` :/
  40. "phy-raw_socket", "phy-tap_interface",
  41. "socket-raw", "socket-icmp", "socket-udp", "socket-tcp"
  42. ]
  43. [[example]]
  44. name = "tcpdump"
  45. required-features = ["std", "phy-raw_socket"]
  46. [[example]]
  47. name = "httpclient"
  48. required-features = ["std", "phy-tap_interface", "socket-tcp"]
  49. [[example]]
  50. name = "ping"
  51. required-features = ["std", "phy-tap_interface", "socket-icmp"]
  52. [[example]]
  53. name = "server"
  54. required-features = ["std", "phy-tap_interface", "socket-tcp", "socket-udp"]
  55. [[example]]
  56. name = "client"
  57. required-features = ["std", "phy-tap_interface", "socket-tcp", "socket-udp"]
  58. [[example]]
  59. name = "loopback"
  60. required-features = ["log", "socket-tcp"]
  61. # This is really a test, but it requires root privileges for setup (the tap interface)
  62. # so it is built as an example.
  63. [[example]]
  64. name = "stress"
  65. required-features = ["std", "phy-tap_interface", "socket-tcp"]
  66. [profile.release]
  67. debug = 2