diff --git a/package.json b/package.json index 7a68dc6..4434265 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlitevector", - "version": "1.0.0", + "version": "0.1.1", "description": "Resident MCP server with SQLite vector search, Tauri 2 + Rust runtime, and llama.cpp integration", "type": "module", "repository": { @@ -46,4 +46,4 @@ "@modelcontextprotocol/sdk": "^1.26.0", "better-sqlite3": "^12.6.2" } -} \ No newline at end of file +} diff --git a/src/backend/Cargo.toml b/src/backend/Cargo.toml index 57a14b4..2f8014e 100644 --- a/src/backend/Cargo.toml +++ b/src/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.1.0" +version = "0.1.1" description = "A Tauri App" authors = ["you"] license = "" diff --git a/src/backend/tauri.conf.json b/src/backend/tauri.conf.json index 30a8618..98f1bdb 100644 --- a/src/backend/tauri.conf.json +++ b/src/backend/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "sqlitevector", - "version": "0.1.0", + "version": "0.1.1", "identifier": "com.sqlitevector.app", "build": { "frontendDist": "../frontend", @@ -41,4 +41,4 @@ "../../resources/icons/icon.ico" ] } -} \ No newline at end of file +} diff --git a/test/tmp_scripts/test_count.rs b/test/tmp_scripts/test_count.rs new file mode 100644 index 0000000..7c183c7 --- /dev/null +++ b/test/tmp_scripts/test_count.rs @@ -0,0 +1,10 @@ + + // Comment + fn main() { + /* Block + Comment */ + let x = 1; + + println!("{}", x); + } + \ No newline at end of file diff --git a/test/tmp_scripts/test_deep.rs b/test/tmp_scripts/test_deep.rs new file mode 100644 index 0000000..9875044 --- /dev/null +++ b/test/tmp_scripts/test_deep.rs @@ -0,0 +1,16 @@ + + fn nested() { + if true { + if true { + if true { + match Some(1) { + Some(_) => { + println!("Deep!"); + } + None => {} + } + } + } + } + } + \ No newline at end of file