work on new engine

This commit is contained in:
Boki 2025-07-04 11:24:27 -04:00
parent 44476da13f
commit a1e5a21847
126 changed files with 3425 additions and 6695 deletions

79
Cargo.lock generated
View file

@ -114,9 +114,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
[[package]]
name = "cc"
version = "1.2.27"
version = "1.2.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
checksum = "4ad45f4f74e4e20eaa392913b7b33a7091c87e59628f4dd27888205ad888843c"
dependencies = [
"shlex",
]
@ -151,32 +151,6 @@ dependencies = [
"unicode-segmentation",
]
[[package]]
name = "core"
version = "0.1.0"
dependencies = [
"anyhow",
"async-trait",
"chrono",
"crossbeam",
"dashmap",
"nalgebra 0.32.6",
"napi",
"napi-build",
"napi-derive",
"parking_lot",
"rand",
"rand_distr",
"serde",
"serde_json",
"statrs",
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
"uuid",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.7"
@ -262,6 +236,32 @@ dependencies = [
"parking_lot_core",
]
[[package]]
name = "engine"
version = "0.1.0"
dependencies = [
"anyhow",
"async-trait",
"chrono",
"crossbeam",
"dashmap",
"nalgebra 0.32.6",
"napi",
"napi-build",
"napi-derive",
"parking_lot",
"rand",
"rand_distr",
"serde",
"serde_json",
"statrs",
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
"uuid",
]
[[package]]
name = "getrandom"
version = "0.2.16"
@ -321,6 +321,17 @@ dependencies = [
"cc",
]
[[package]]
name = "io-uring"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
dependencies = [
"bitflags",
"cfg-if",
"libc",
]
[[package]]
name = "itoa"
version = "1.0.15"
@ -876,6 +887,12 @@ dependencies = [
"wide",
]
[[package]]
name = "slab"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
[[package]]
name = "smallvec"
version = "1.15.1"
@ -958,17 +975,19 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.45.1"
version = "1.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
checksum = "1140bb80481756a8cbe10541f37433b459c5aa1e727b4c020fbfebdc25bf3ec4"
dependencies = [
"backtrace",
"bytes",
"io-uring",
"libc",
"mio",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"slab",
"socket2",
"tokio-macros",
"windows-sys 0.52.0",