Cargo.toml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. [package]
  2. name = "smoltcp"
  3. version = "0.6.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", "network-programming"]
  12. license = "0BSD"
  13. # Each example should have an explicit `[[example]]` section here to
  14. # ensure that the correct features are enabled.
  15. autoexamples = false
  16. [dependencies]
  17. managed = { version = "0.7", default-features = false, features = ["map"] }
  18. byteorder = { version = "1.0", default-features = false }
  19. log = { version = "0.4.4", default-features = false, optional = true }
  20. libc = { version = "0.2.18", optional = true }
  21. bitflags = { version = "1.0", default-features = false }
  22. [dev-dependencies]
  23. env_logger = "0.5"
  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. ethernet = []
  32. "phy-raw_socket" = ["std", "libc"]
  33. "phy-tap_interface" = ["std", "libc"]
  34. "proto-ipv4" = []
  35. "proto-igmp" = ["proto-ipv4"]
  36. "proto-dhcpv4" = ["proto-ipv4", "socket-raw"]
  37. "proto-ipv6" = []
  38. "socket-raw" = []
  39. "socket-udp" = []
  40. "socket-tcp" = []
  41. "socket-icmp" = []
  42. default = [
  43. "std", "log", # needed for `cargo test --no-default-features --features default` :/
  44. "ethernet",
  45. "phy-raw_socket", "phy-tap_interface",
  46. "proto-ipv4", "proto-igmp", "proto-ipv6",
  47. "socket-raw", "socket-icmp", "socket-udp", "socket-tcp"
  48. ]
  49. # experimental; do not use; no guarantees provided that this feature will be kept
  50. "rust-1_28" = []
  51. [[example]]
  52. name = "packet2pcap"
  53. path = "utils/packet2pcap.rs"
  54. required-features = ["std"]
  55. [[example]]
  56. name = "tcpdump"
  57. required-features = ["std", "phy-raw_socket", "proto-ipv4"]
  58. [[example]]
  59. name = "httpclient"
  60. required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-ipv6", "socket-tcp"]
  61. [[example]]
  62. name = "ping"
  63. required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-ipv6", "socket-icmp"]
  64. [[example]]
  65. name = "server"
  66. required-features = ["std", "phy-tap_interface", "proto-ipv4", "socket-tcp", "socket-udp"]
  67. [[example]]
  68. name = "client"
  69. required-features = ["std", "phy-tap_interface", "proto-ipv4", "socket-tcp", "socket-udp"]
  70. [[example]]
  71. name = "loopback"
  72. required-features = ["log", "proto-ipv4", "socket-tcp"]
  73. [[example]]
  74. name = "multicast"
  75. required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-igmp", "socket-udp"]
  76. [[example]]
  77. name = "benchmark"
  78. required-features = ["std", "phy-tap_interface", "proto-ipv4", "socket-raw", "socket-udp"]
  79. [[example]]
  80. name = "dhcp_client"
  81. required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-dhcpv4", "socket-raw"]
  82. [profile.release]
  83. debug = 2