feat: cargo project at root

This commit is contained in:
binarybaron 2024-08-08 00:45:26 +02:00
parent bde04fbd76
commit 8c4531cfd3
No known key found for this signature in database
GPG key ID: 99B75D3E1476A26E
493 changed files with 9665 additions and 1795 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "unstoppableswap-gui-rs"
version = "0.0.0"
authors = [ "you" ]
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -9,16 +9,16 @@ description = "A Tauri App"
[lib]
name = "unstoppableswap_gui_rs_lib"
crate-type = [ "lib", "cdylib", "staticlib" ]
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2.0.0-beta", features = [ ] }
tauri-build = { version = "2.0.0-rc.1", features = ["config-json5"] }
[dependencies]
anyhow = "1"
once_cell = "1"
serde = { version = "1", features = [ "derive" ] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
swap = { path = "../swap" }
tauri = { version = "2.0.0-beta", features = [ ] }
tauri-plugin-shell = "2.0.0-beta"
tauri = { version = "2.0.0-rc.1", features = ["config-json5"] }
tauri-plugin-shell = "2.0.0-rc.0"

View file

@ -1,17 +1,7 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": [
"path:default",
"event:default",
"window:default",
"app:default",
"image:default",
"resources:default",
"menu:default",
"tray:default",
"shell:allow-open"
]
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": ["shell:allow-open"]
}

View file

@ -1,34 +1,32 @@
{
"productName": "unstoppableswap-gui-rs",
"version": "0.0.0",
"identifier": "net.unstoppableswap.gui",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "unstoppableswap-gui-rs",
"width": 800,
"height": 600
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' http://localhost:1234"
"productName": "unstoppableswap-gui-rs",
"version": "0.1.0",
"identifier": "net.unstoppableswap.gui",
"build": {
"devUrl": "http://localhost:1420",
"frontendDist": "../src-gui/dist"
},
"app": {
"windows": [
{
"title": "unstoppableswap-gui-rs",
"width": 800,
"height": 600
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' http://localhost:1234"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}