You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.lock 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "aho-corasick"
  5. version = "0.7.10"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
  8. dependencies = [
  9. "memchr",
  10. ]
  11. [[package]]
  12. name = "lazy_static"
  13. version = "1.4.0"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  16. [[package]]
  17. name = "memchr"
  18. version = "2.3.3"
  19. source = "registry+https://github.com/rust-lang/crates.io-index"
  20. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  21. [[package]]
  22. name = "regex"
  23. version = "1.3.4"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8"
  26. dependencies = [
  27. "aho-corasick",
  28. "memchr",
  29. "regex-syntax",
  30. "thread_local",
  31. ]
  32. [[package]]
  33. name = "regex-syntax"
  34. version = "0.6.16"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "1132f845907680735a84409c3bebc64d1364a5683ffbce899550cd09d5eaefc1"
  37. [[package]]
  38. name = "thread_local"
  39. version = "1.0.1"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  42. dependencies = [
  43. "lazy_static",
  44. ]
  45. [[package]]
  46. name = "webserv"
  47. version = "0.2.0"
  48. dependencies = [
  49. "regex",
  50. ]