diff options
| author | Mica White <botahamec@outlook.com> | 2026-05-12 13:33:22 -0400 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-05-12 13:33:22 -0400 |
| commit | 8b534ea0488701d3312894e3a0ee9531e2cd444c (patch) | |
| tree | 69205b29b22219fd7de56e70f93a99273120c19b /Cargo.lock | |
| parent | fd835b4ce895d83940cca0107fd03c7b035506ac (diff) | |
Implement Tuple for all tuple lengths
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -3,6 +3,12 @@ version = 4 [[package]] +name = "mutants" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc0287524726960e07b119cebd01678f852f147742ae0d925e6a520dca956126" + +[[package]] name = "proc-macro2" version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -21,6 +27,12 @@ dependencies = [ ] [[package]] +name = "rustc-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" + +[[package]] name = "syn" version = "2.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -38,6 +50,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] +name = "unsynn" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "501a7adf1a4bd9951501e5c66621e972ef8874d787628b7f90e64f936ef7ec0a" +dependencies = [ + "mutants", + "proc-macro2", + "rustc-hash", +] + +[[package]] name = "varihappy" version = "0.1.0" dependencies = [ @@ -51,4 +74,5 @@ dependencies = [ "proc-macro2", "quote", "syn", + "unsynn", ] |
