diff --git a/Cargo.lock b/Cargo.lock index 10f0055..0b1a6ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4639,6 +4639,7 @@ dependencies = [ name = "omnigraph-engine" version = "0.4.1" dependencies = [ + "arc-swap", "arrow-array", "arrow-cast", "arrow-ord", diff --git a/Cargo.toml b/Cargo.toml index 2878bf7..761f29b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,6 +56,7 @@ tower-http = { version = "0.6", features = ["trace"] } color-eyre = "0.6" tempfile = "3" ahash = "0.8" +arc-swap = "1" base64 = "0.22" ariadne = "0.4" regex = "1" diff --git a/crates/omnigraph/Cargo.toml b/crates/omnigraph/Cargo.toml index 3871904..58e573f 100644 --- a/crates/omnigraph/Cargo.toml +++ b/crates/omnigraph/Cargo.toml @@ -47,6 +47,7 @@ time = { workspace = true } async-trait = { workspace = true } url = { workspace = true } chrono = { workspace = true } +arc-swap = { workspace = true } [dev-dependencies] omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.4.1" }