Skip to content

Commit

Permalink
fix: conf changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tadghh committed Nov 4, 2024
1 parent 799367b commit 75138e6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
authors =["Tadgh Henry"]
authors = ["Tadgh Henry"]
default-run ="app"
description ="A place to store and read your books"
edition ="2021"
Expand All @@ -12,34 +12,34 @@ version ="1.1.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build={ version="1.5.0", features=[] }
tauri-build= { version="1.5.0", features= [] }

[dependencies]
epub="2.1.2"
rayon="1.10.0"
regex={ version="1.10.6", default-features=false }
serde={ version="1.0", features=["derive"] }
serde_json={ version="1.0.125", default-features=false }
sqlx={ version="0.8.0", features=["runtime-tokio", "sqlite"] }
tauri={ version="1.5.1", features=[
regex= { version="1.10.6", default-features=false }
serde= { version="1.0", features= ["derive"] }
serde_json= { version="1.0.125", default-features=false }
sqlx= { version="0.8.0", features= ["runtime-tokio", "sqlite"] }
tauri= { version="1.5.1", features= [
"dialog-open",
"protocol-asset",
"window-set-min-size",
"window-set-size",
"window-set-title",
] }
tauri-utils="1.5.0"
time={ version="0.3.36", features=["formatting"] }
time= { version="0.3.36", features= ["formatting"] }
tokio="1.39.2"
xmltree="0.10.3"

[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default=["custom-protocol"]
default= ["custom-protocol"]
# this feature is used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol=["tauri/custom-protocol"]
custom-protocol= ["tauri/custom-protocol"]
[profile.dev.package."*"]
opt-level=3
[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"beforeBuildCommand": "npm run build && npm run export",
"beforeDevCommand": "npm run dev",
"devPath": "http://localhost:3000",

"distDir": "./out",
"withGlobalTauri": true
},
"package": {
Expand Down

0 comments on commit 75138e6

Please sign in to comment.