Skip to content

Commit

Permalink
Fixed identifier in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed May 29, 2024
1 parent 073a34b commit 39444f2
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ crate-type = ["staticlib", "cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2.0.0-beta", default-features = false , features = [] }
tauri-build = { version = "2.0.0-beta.17", default-features = false , features = [] }

[dependencies]
tauri = { version = "2.0.0-beta", features = [] }
tauri = { version = "2.0.0-beta.22", features = [] }
tauri-plugin-holochain = { git = "https://github.com/darksoil-studio/p2p-shipyard", branch = "main" }
holochain_types = { version = "0.3.1-rc" }
lair_keystore = { version = "0.4.0" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "{{runtime_name}}",
"version": "0.0.1",
"identifier": "{{flat_case runtime_name}}",
"identifier": "your.domain.{{flat_case runtime_name}}",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ crate-type = ["staticlib", "cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2.0.0-beta", default-features = false , features = [] }
tauri-build = { version = "2.0.0-beta.17", default-features = false , features = [] }

[dependencies]
tauri = { version = "2.0.0-beta", features = [] }
tauri = { version = "2.0.0-beta.22", features = [] }
tauri-plugin-holochain = { git = "https://github.com/darksoil-studio/p2p-shipyard", branch = "main" }
holochain_types = { version = "0.3.1-rc" }
lair_keystore = { version = "0.4.0" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "{{app_name}}",
"version": "0.0.1",
"identifier": "{{identifier}}",
"identifier": "your.domain.{{identifier}}",
"build": {
"beforeBuildCommand": "npm run build -w ui && npm run build:happ",
"devUrl": "http://localhost:1420",
Expand Down
7 changes: 3 additions & 4 deletions crates/tauri-plugin-holochain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ rust-version = "1.75"
links = "tauri-plugin-holochain"

[dependencies]
tauri = { version = "2.0.0-beta", features = [
tauri = { version = "2.0.0-beta.22", features = [
"devtools",
"native-tls-vendored",
] }

# Holochain dependencies
mr_bundle = "0.3.1-rc"
holochain = "=0.3.1-rc.0"
holochain_types = "0.3.1-rc"
holochain_keystore = "0.3.1-rc"
holochain_types = "0.3.1-rc"
holochain_keystore = "0.3.1-rc"
holochain_conductor_api = "0.3.1-rc"

# Lair dependencies
Expand Down Expand Up @@ -53,4 +53,3 @@ one_err = "0"

[build-dependencies]
tauri-plugin = { version = "2.0.0-beta", features = ["build"] }

5 changes: 3 additions & 2 deletions examples/end-user-happ/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ crate-type = ["staticlib", "cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2.0.0-beta.15", default-features = false , features = [] }
tauri-build = { version = "2.0.0-beta.17", default-features = false, features = [
] }

[dependencies]
tauri = { version = "2.0.0-beta.13", features = [] }
tauri = { version = "2.0.0-beta.22", features = [] }
tauri-plugin-holochain = { path = "../../../crates/tauri-plugin-holochain" }
holochain_types = { version = "0.3.1-rc" }
lair_keystore = { version = "0.4.0" }
Expand Down
6 changes: 3 additions & 3 deletions examples/holochain-runtime/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ crate-type = ["staticlib", "cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2.0.0-beta", default-features = false , features = [] }
tauri-build = { version = "2.0.0-beta.17", default-features = false, features = [
] }

[dependencies]
tauri = { version = "2.0.0-beta", features = [] }
tauri = { version = "2.0.0-beta.22", features = [] }
tauri-plugin-holochain = { path = "../../../crates/tauri-plugin-holochain" }
holochain_types = { version = "0.3.1-rc" }
lair_keystore = { version = "0.4.0" }
Expand All @@ -28,4 +29,3 @@ tauri-plugin-log = "2.0.0-beta"
url2 = "0.0.6"
app_dirs2 = "2.5.5"
tempdir = "0.3.7"

0 comments on commit 39444f2

Please sign in to comment.