Cargo.toml 4.3 KB

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