Add BOB reasoning engine: Metatron JS, APL, Lean4 theorems, Rust meta_resonance, universal-corpus, knowledge-chunks
Browse files
rust/Cargo.lock
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is automatically @generated by Cargo.
|
| 2 |
+
# It is not intended for manual editing.
|
| 3 |
+
version = 4
|
| 4 |
+
|
| 5 |
+
[[package]]
|
| 6 |
+
name = "block-buffer"
|
| 7 |
+
version = "0.10.4"
|
| 8 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 9 |
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
| 10 |
+
dependencies = [
|
| 11 |
+
"generic-array",
|
| 12 |
+
]
|
| 13 |
+
|
| 14 |
+
[[package]]
|
| 15 |
+
name = "cfg-if"
|
| 16 |
+
version = "1.0.4"
|
| 17 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 18 |
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
| 19 |
+
|
| 20 |
+
[[package]]
|
| 21 |
+
name = "cpufeatures"
|
| 22 |
+
version = "0.2.17"
|
| 23 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 24 |
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
| 25 |
+
dependencies = [
|
| 26 |
+
"libc",
|
| 27 |
+
]
|
| 28 |
+
|
| 29 |
+
[[package]]
|
| 30 |
+
name = "crypto-common"
|
| 31 |
+
version = "0.1.7"
|
| 32 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 33 |
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
| 34 |
+
dependencies = [
|
| 35 |
+
"generic-array",
|
| 36 |
+
"typenum",
|
| 37 |
+
]
|
| 38 |
+
|
| 39 |
+
[[package]]
|
| 40 |
+
name = "digest"
|
| 41 |
+
version = "0.10.7"
|
| 42 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 43 |
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
| 44 |
+
dependencies = [
|
| 45 |
+
"block-buffer",
|
| 46 |
+
"crypto-common",
|
| 47 |
+
]
|
| 48 |
+
|
| 49 |
+
[[package]]
|
| 50 |
+
name = "generic-array"
|
| 51 |
+
version = "0.14.7"
|
| 52 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 53 |
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
| 54 |
+
dependencies = [
|
| 55 |
+
"typenum",
|
| 56 |
+
"version_check",
|
| 57 |
+
]
|
| 58 |
+
|
| 59 |
+
[[package]]
|
| 60 |
+
name = "hex"
|
| 61 |
+
version = "0.4.3"
|
| 62 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 63 |
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
| 64 |
+
|
| 65 |
+
[[package]]
|
| 66 |
+
name = "libc"
|
| 67 |
+
version = "0.2.186"
|
| 68 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 69 |
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
| 70 |
+
|
| 71 |
+
[[package]]
|
| 72 |
+
name = "metatron-solver"
|
| 73 |
+
version = "0.1.0"
|
| 74 |
+
dependencies = [
|
| 75 |
+
"hex",
|
| 76 |
+
"resonance",
|
| 77 |
+
"sha2",
|
| 78 |
+
]
|
| 79 |
+
|
| 80 |
+
[[package]]
|
| 81 |
+
name = "resonance"
|
| 82 |
+
version = "0.1.0"
|
| 83 |
+
dependencies = [
|
| 84 |
+
"hex",
|
| 85 |
+
"sha2",
|
| 86 |
+
]
|
| 87 |
+
|
| 88 |
+
[[package]]
|
| 89 |
+
name = "sha2"
|
| 90 |
+
version = "0.10.9"
|
| 91 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 92 |
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
| 93 |
+
dependencies = [
|
| 94 |
+
"cfg-if",
|
| 95 |
+
"cpufeatures",
|
| 96 |
+
"digest",
|
| 97 |
+
]
|
| 98 |
+
|
| 99 |
+
[[package]]
|
| 100 |
+
name = "typenum"
|
| 101 |
+
version = "1.20.1"
|
| 102 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 103 |
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
| 104 |
+
|
| 105 |
+
[[package]]
|
| 106 |
+
name = "version_check"
|
| 107 |
+
version = "0.9.5"
|
| 108 |
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 109 |
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
rust/target/debug/incremental/metatron_solver-3l50nv3glbfzj/s-hjqw40vruw-0iujnps.lock
ADDED
|
File without changes
|
rust/target/debug/incremental/metatron_solver-3l50nv3glbfzj/s-hjqw466d7a-19zokct.lock
ADDED
|
File without changes
|
rust/target/debug/incremental/resonance-3p270w5ay5n3g/s-hjqw40nq71-1vml587.lock
ADDED
|
File without changes
|