Nothing to see here, move along
at main 20 lines 474 B view raw
1[package] 2name = "lancer-netstack" 3version = "0.1.0" 4edition = "2024" 5 6[dependencies] 7lancer-core = { path = "../../lib/lancer-core" } 8lancer-user = { path = "../../lib/lancer-user" } 9lancer-log = { path = "../../lib/lancer-log" } 10smoltcp = { version = "0.12", default-features = false, features = [ 11 "medium-ethernet", 12 "proto-ipv4", 13 "proto-ipv6", 14 "socket-tcp", 15 "socket-icmp", 16 "socket-udp", 17 "socket-dhcpv4", 18 "socket-dns", 19 "multicast", 20] }