This commit is contained in:
Julian Freeman
2025-12-01 07:28:26 -04:00
parent 7541190a43
commit 813229aae9
3 changed files with 15 additions and 15 deletions

26
src-tauri/Cargo.lock generated
View File

@@ -2,19 +2,6 @@
# It is not intended for manual editing. # It is not intended for manual editing.
version = 4 version = 4
[[package]]
name = "LiteRequest"
version = "0.1.0"
dependencies = [
"reqwest",
"serde",
"serde_json",
"tauri",
"tauri-build",
"tauri-plugin-opener",
"tokio",
]
[[package]] [[package]]
name = "adler2" name = "adler2"
version = "2.0.1" version = "2.0.1"
@@ -1969,6 +1956,19 @@ version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
[[package]]
name = "lite-request"
version = "0.1.0"
dependencies = [
"reqwest",
"serde",
"serde_json",
"tauri",
"tauri-build",
"tauri-plugin-opener",
"tokio",
]
[[package]] [[package]]
name = "litemap" name = "litemap"
version = "0.8.1" version = "0.8.1"

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "LiteRequest" name = "lite-request"
version = "0.1.0" version = "0.1.0"
description = "A Simple REST API Client" description = "A Simple REST API Client"
authors = ["you"] authors = ["you"]

View File

@@ -2,7 +2,7 @@
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "LiteRequest", "productName": "LiteRequest",
"version": "0.1.0", "version": "0.1.0",
"identifier": "top.volan.LiteRequest", "identifier": "top.volan.lite-request",
"build": { "build": {
"beforeDevCommand": "pnpm dev", "beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420", "devUrl": "http://localhost:1420",