diff options
author | iximeow <me@iximeow.net> | 2023-12-22 19:43:28 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-12-22 19:43:28 -0800 |
commit | bae3a2bcea45d3194bfd7f328f3409b5e1bf659c (patch) | |
tree | 6588ef9db4a544a5edc389177e8bb95084bc6a64 /Cargo.lock |
initial commit (it doesn't build, but it's all the notes at least)
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..cb493e1 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,35 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "num-traits" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" +dependencies = [ + "autocfg", +] + +[[package]] +name = "yaxpeax-arch" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1ba5c2f163fa2f866c36750c6c931566c6d93231ae9410083b0738953b609d5" +dependencies = [ + "num-traits", +] + +[[package]] +name = "yaxpeax-rx" +version = "0.0.1" +dependencies = [ + "num-traits", + "yaxpeax-arch", +] |