From 735b60f3cbd37b616934deef2202e451448a578d Mon Sep 17 00:00:00 2001 From: janis Date: Fri, 19 Sep 2025 13:47:32 +0200 Subject: [PATCH] add trie dependency --- Cargo.toml | 1 + crates/lexer/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 48c08be..6968b51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,7 @@ unicode-xid = "0.2.4" tracing = "0.1.41" werkzeug = { path = "../../rust/werkzeug" } +trie = { path = "../../rust/trie" } [workspace.dependencies] diff --git a/crates/lexer/Cargo.toml b/crates/lexer/Cargo.toml index 65b3975..5db2779 100644 --- a/crates/lexer/Cargo.toml +++ b/crates/lexer/Cargo.toml @@ -6,4 +6,5 @@ edition = "2024" [dependencies] tracing = { workspace = true } werkzeug = { workspace = true } +trie = { workspace = true } unicode-xid = { workspace = true } \ No newline at end of file