Cargo.toml 624 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "wasmedge_wasi_socket"
  3. version = "0.5.4"
  4. authors = ["Yi <yi@secondstate.io>"]
  5. edition = "2021"
  6. license = "Apache-2.0"
  7. description = "Rust API for the networking socket functions supported in the WasmEdge Runtime for WebAssembly."
  8. repository = "https://github.com/second-state/wasmedge_wasi_socket"
  9. readme = "README.md"
  10. categories = ["network-programming"]
  11. keywords = ["http", "tcp", "socket", "webassembly", "wasmedge"]
  12. [lib]
  13. name = "wasmedge_wasi_socket"
  14. path = "src/lib.rs"
  15. [dependencies]
  16. bytes = "1"
  17. dns-parser = "0.8.0"
  18. libc = "0.2.3"
  19. rand = "0.8.5"
  20. [features]
  21. default = []
  22. wasi_poll = []
  23. epoll = []