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 = "hello"
  13. version = "0.2.0"
  14. dependencies = [
  15. "regex",
  16. ]
  17. [[package]]
  18. name = "lazy_static"
  19. version = "1.4.0"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  22. [[package]]
  23. name = "memchr"
  24. version = "2.3.3"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  27. [[package]]
  28. name = "regex"
  29. version = "1.3.4"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8"
  32. dependencies = [
  33. "aho-corasick",
  34. "memchr",
  35. "regex-syntax",
  36. "thread_local",
  37. ]
  38. [[package]]
  39. name = "regex-syntax"
  40. version = "0.6.16"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "1132f845907680735a84409c3bebc64d1364a5683ffbce899550cd09d5eaefc1"
  43. [[package]]
  44. name = "thread_local"
  45. version = "1.0.1"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  48. dependencies = [
  49. "lazy_static",
  50. ]