diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-07-09 18:04:08 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-07-09 18:04:08 -0700 |
| commit | d45e9b8c293fa1e04ede47af0007bc720f093413 (patch) | |
| tree | c1b27300f6e945c69360a1e23edad176af41673e /src/apple_silicon/Cargo.lock | |
| download | x-d45e9b8c293fa1e04ede47af0007bc720f093413.tar.gz | |
initial commit
```
[18:04] mba-fcuny:apple_silicon (main +) | cargo run
Compiling apple_silicon v0.1.0 (/Users/fcuny/workspace/apple_silicon)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.13s
Running `target/debug/apple_silicon`
our CPU is an Apple M2, and we have 8 cores, and 10 GPU cores
```
Diffstat (limited to 'src/apple_silicon/Cargo.lock')
| -rw-r--r-- | src/apple_silicon/Cargo.lock | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/apple_silicon/Cargo.lock b/src/apple_silicon/Cargo.lock new file mode 100644 index 0000000..25e57f9 --- /dev/null +++ b/src/apple_silicon/Cargo.lock @@ -0,0 +1,65 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "apple_silicon" +version = "0.1.0" +dependencies = [ + "thiserror", +] + +[[package]] +name = "proc-macro2" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "syn" +version = "2.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "201fcda3845c23e8212cd466bfebf0bd20694490fc0356ae8e428e0824a915a6" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "thiserror" +version = "1.0.61" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.61" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" |
