Cargo.toml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. [package]
  2. name = "smoltcp"
  3. version = "0.8.0"
  4. edition = "2018"
  5. authors = ["whitequark <whitequark@whitequark.org>"]
  6. description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
  7. documentation = "https://docs.rs/smoltcp/"
  8. homepage = "https://github.com/smoltcp-rs/smoltcp"
  9. repository = "https://github.com/smoltcp-rs/smoltcp.git"
  10. readme = "README.md"
  11. keywords = ["ip", "tcp", "udp", "ethernet", "network"]
  12. categories = ["embedded", "network-programming"]
  13. license = "0BSD"
  14. # Each example should have an explicit `[[example]]` section here to
  15. # ensure that the correct features are enabled.
  16. autoexamples = false
  17. [dependencies]
  18. managed = { version = "0.8", default-features = false, features = ["map"] }
  19. byteorder = { version = "1.0", default-features = false }
  20. log = { version = "0.4.4", default-features = false, optional = true }
  21. libc = { version = "0.2.18", optional = true }
  22. bitflags = { version = "1.0", default-features = false }
  23. defmt = { version = "0.3", optional = true }
  24. rand_core = { version = "0.6.3", optional = true, default-features = false }
  25. [dev-dependencies]
  26. env_logger = "0.5"
  27. getopts = "0.2"
  28. rand = "0.3"
  29. url = "1.0"
  30. [features]
  31. std = ["managed/std", "rand_core/std"]
  32. alloc = ["managed/alloc"]
  33. verbose = []
  34. rand-custom-impl = []
  35. "medium-ethernet" = ["socket"]
  36. "medium-ip" = ["socket"]
  37. "medium-ieee802154" = ["socket", "proto-sixlowpan"]
  38. "phy-raw_socket" = ["std", "libc"]
  39. "phy-tuntap_interface" = ["std", "libc", "medium-ethernet"]
  40. "proto-ipv4" = []
  41. "proto-igmp" = ["proto-ipv4"]
  42. "proto-dhcpv4" = ["proto-ipv4"]
  43. "proto-ipv6" = []
  44. "proto-sixlowpan" = ["proto-ipv6"]
  45. "socket" = []
  46. "socket-raw" = ["socket"]
  47. "socket-udp" = ["socket"]
  48. "socket-tcp" = ["socket"]
  49. "socket-icmp" = ["socket"]
  50. "socket-dhcpv4" = ["socket", "medium-ethernet", "proto-dhcpv4"]
  51. "async" = []
  52. default = [
  53. "std", "log", # needed for `cargo test --no-default-features --features default` :/
  54. "medium-ethernet", "medium-ip", "medium-ieee802154",
  55. "phy-raw_socket", "phy-tuntap_interface",
  56. "proto-ipv4", "proto-igmp", "proto-dhcpv4", "proto-ipv6", "proto-sixlowpan",
  57. "socket-raw", "socket-icmp", "socket-udp", "socket-tcp", "socket-dhcpv4",
  58. "async"
  59. ]
  60. # experimental; do not use; no guarantees provided that this feature will be kept
  61. "rust-1_28" = []
  62. [[example]]
  63. name = "packet2pcap"
  64. path = "utils/packet2pcap.rs"
  65. required-features = ["std"]
  66. [[example]]
  67. name = "tcpdump"
  68. required-features = ["std", "phy-raw_socket", "proto-ipv4"]
  69. [[example]]
  70. name = "httpclient"
  71. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "proto-ipv6", "socket-tcp"]
  72. [[example]]
  73. name = "ping"
  74. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "proto-ipv6", "socket-icmp"]
  75. [[example]]
  76. name = "server"
  77. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "socket-tcp", "socket-udp"]
  78. [[example]]
  79. name = "client"
  80. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "socket-tcp", "socket-udp"]
  81. [[example]]
  82. name = "loopback"
  83. required-features = ["log", "medium-ethernet", "proto-ipv4", "socket-tcp"]
  84. [[example]]
  85. name = "multicast"
  86. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "proto-igmp", "socket-udp"]
  87. [[example]]
  88. name = "benchmark"
  89. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "socket-raw", "socket-udp"]
  90. [[example]]
  91. name = "dhcp_client"
  92. required-features = ["std", "medium-ethernet", "medium-ip", "phy-tuntap_interface", "proto-ipv4", "proto-dhcpv4", "socket-raw"]
  93. [[example]]
  94. name = "sixlowpan"
  95. required-features = ["std", "medium-ieee802154", "phy-raw_socket", "proto-sixlowpan", "socket-udp"]
  96. [profile.release]
  97. debug = 2