Skip to content

Commit

Permalink
chore: bump tauri-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Feb 19, 2024
1 parent b735b67 commit a4b82d9
Show file tree
Hide file tree
Showing 11 changed files with 300 additions and 256 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

21 changes: 12 additions & 9 deletions core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
[package]
name = "tauri-build"
version = "1.5.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
authors = ["Tauri Programme within The Commons Conservancy"]
categories = ["gui", "web-programming"]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
description = "build time code to pair with https://crates.io/crates/tauri"
edition = "2021"
rust-version = "1.60"
exclude = [ "CHANGELOG.md", "/target" ]
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [ "--cfg", "doc_cfg" ]
rustdoc-args = ["--cfg", "doc_cfg"]

[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.4.2", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.5.2", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-utils = { version = "1.5.3", path = "../tauri-utils", features = [
"build",
"resources",
] }
cargo_toml = "0.15"
serde = "1"
serde_json = "1"
Expand All @@ -32,7 +35,7 @@ walkdir = "2"
dirs-next = "2"

[features]
codegen = [ "tauri-codegen", "quote" ]
isolation = [ "tauri-codegen/isolation", "tauri-utils/isolation" ]
config-json5 = [ "tauri-utils/config-json5" ]
config-toml = [ "tauri-utils/config-toml" ]
codegen = ["tauri-codegen", "quote"]
isolation = ["tauri-codegen/isolation", "tauri-utils/isolation"]
config-json5 = ["tauri-utils/config-json5"]
config-toml = ["tauri-utils/config-toml"]
32 changes: 18 additions & 14 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,43 +1,47 @@
[package]
name = "tauri-codegen"
version = "1.4.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
authors = ["Tauri Programme within The Commons Conservancy"]
categories = ["gui", "web-programming"]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
edition = "2021"
rust-version = "1.60"
exclude = [ "CHANGELOG.md", "/target" ]
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"

[dependencies]
sha2 = "0.10"
base64 = "0.21"
proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri-utils = { version = "1.5.2", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.5.3", path = "../tauri-utils", features = [
"build",
] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
brotli = { version = "3", optional = true, default-features = false, features = [
"std",
] }
regex = { version = "1", optional = true }
uuid = { version = "1", features = [ "v4" ] }
uuid = { version = "1", features = ["v4"] }
semver = "1"
ico = "0.3"
png = "0.17"
json-patch = "1.2"

[target."cfg(target_os = \"macos\")".dependencies]
plist = "1"
time = { version = "0.3", features = [ "parsing", "formatting" ] }
time = { version = "0.3", features = ["parsing", "formatting"] }

[features]
default = [ "compression" ]
compression = [ "brotli", "tauri-utils/compression" ]
isolation = [ "tauri-utils/isolation" ]
shell-scope = [ "regex" ]
config-json5 = [ "tauri-utils/config-json5" ]
config-toml = [ "tauri-utils/config-toml" ]
default = ["compression"]
compression = ["brotli", "tauri-utils/compression"]
isolation = ["tauri-utils/isolation"]
shell-scope = ["regex"]
config-json5 = ["tauri-utils/config-json5"]
config-toml = ["tauri-utils/config-toml"]
26 changes: 13 additions & 13 deletions core/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
[package]
name = "tauri-macros"
version = "1.4.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
authors = ["Tauri Programme within The Commons Conservancy"]
categories = ["gui", "os", "filesystem", "web-programming"]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Macros for the tauri crate."
edition = "2021"
rust-version = "1.60"
exclude = [ "CHANGELOG.md", "/target" ]
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"

[lib]
proc-macro = true

[dependencies]
proc-macro2 = { version = "1", features = [ "span-locations" ] }
proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
syn = { version = "1", features = [ "full" ] }
syn = { version = "1", features = ["full"] }
heck = "0.4"
tauri-codegen = { version = "1.4.2", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.5.2", path = "../tauri-utils" }
tauri-utils = { version = "1.5.3", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
compression = [ "tauri-codegen/compression" ]
isolation = [ "tauri-codegen/isolation" ]
shell-scope = [ "tauri-codegen/shell-scope" ]
config-json5 = [ "tauri-codegen/config-json5", "tauri-utils/config-json5" ]
config-toml = [ "tauri-codegen/config-toml", "tauri-utils/config-toml" ]
tracing = [ ]
custom-protocol = []
compression = ["tauri-codegen/compression"]
isolation = ["tauri-codegen/isolation"]
shell-scope = ["tauri-codegen/shell-scope"]
config-json5 = ["tauri-codegen/config-json5", "tauri-utils/config-json5"]
config-toml = ["tauri-codegen/config-toml", "tauri-utils/config-toml"]
tracing = []
43 changes: 23 additions & 20 deletions core/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
[package]
name = "tauri-runtime-wry"
version = "0.14.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
authors = ["Tauri Programme within The Commons Conservancy"]
categories = ["gui", "web-programming"]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Wry bindings to the Tauri runtime"
edition = "2021"
rust-version = "1.60"
exclude = [ "CHANGELOG.md", "/target" ]
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"

[dependencies]
wry = { version = "0.24.6", default-features = false, features = [ "file-drop", "protocol" ] }
wry = { version = "0.24.6", default-features = false, features = [
"file-drop",
"protocol",
] }
tauri-runtime = { version = "0.14.2", path = "../tauri-runtime" }
tauri-utils = { version = "1.5.2", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
tauri-utils = { version = "1.5.3", path = "../tauri-utils" }
uuid = { version = "1", features = ["v4"] }
rand = "0.8"
raw-window-handle = "0.5"
tracing = { version = "0.1", optional = true }
Expand All @@ -25,29 +28,29 @@ arboard = { version = "3", optional = true }
[target."cfg(windows)".dependencies]
webview2-com = "0.19.1"

[target."cfg(windows)".dependencies.windows]
version = "0.39.0"
features = [ "Win32_Foundation" ]
[target."cfg(windows)".dependencies.windows]
version = "0.39.0"
features = ["Win32_Foundation"]

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
gtk = { version = "0.15", features = [ "v3_20" ] }
webkit2gtk = { version = "0.18.2", features = [ "v2_22" ] }
gtk = { version = "0.15", features = ["v3_20"] }
webkit2gtk = { version = "0.18.2", features = ["v2_22"] }
percent-encoding = "2.1"

[target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
cocoa = "0.24"

[features]
dox = [ "wry/dox" ]
devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
system-tray = [ "tauri-runtime/system-tray", "wry/tray" ]
dox = ["wry/dox"]
devtools = ["wry/devtools", "tauri-runtime/devtools"]
system-tray = ["tauri-runtime/system-tray", "wry/tray"]
macos-private-api = [
"wry/fullscreen",
"wry/transparent",
"tauri-runtime/macos-private-api"
"tauri-runtime/macos-private-api",
]
objc-exception = [ "wry/objc-exception" ]
global-shortcut = [ "tauri-runtime/global-shortcut" ]
clipboard = [ "tauri-runtime/clipboard", "arboard/wayland-data-control" ]
linux-headers = [ "wry/linux-headers", "webkit2gtk/v2_36" ]
tracing = [ "dep:tracing", "wry/tracing" ]
objc-exception = ["wry/objc-exception"]
global-shortcut = ["tauri-runtime/global-shortcut"]
clipboard = ["tauri-runtime/clipboard", "arboard/wayland-data-control"]
linux-headers = ["wry/linux-headers", "webkit2gtk/v2_36"]
tracing = ["dep:tracing", "wry/tracing"]
34 changes: 17 additions & 17 deletions core/tauri-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
[package]
name = "tauri-runtime"
version = "0.14.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
authors = ["Tauri Programme within The Commons Conservancy"]
categories = ["gui", "web-programming"]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Runtime for Tauri applications"
edition = "2021"
rust-version = "1.60"
exclude = [ "CHANGELOG.md", "/target" ]
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [ "--cfg", "doc_cfg" ]
rustdoc-args = ["--cfg", "doc_cfg"]
default-target = "x86_64-unknown-linux-gnu"
targets = [
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin"
"x86_64-apple-darwin",
]

[dependencies]
serde = { version = "1.0", features = [ "derive" ] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "1.5.2", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
tauri-utils = { version = "1.5.3", path = "../tauri-utils" }
uuid = { version = "1", features = ["v4"] }
http = "0.2.4"
http-range = "0.1.4"
raw-window-handle = "0.5"
Expand All @@ -37,16 +37,16 @@ url = { version = "2" }
[target."cfg(windows)".dependencies]
webview2-com = "0.19.1"

[target."cfg(windows)".dependencies.windows]
version = "0.39.0"
features = [ "Win32_Foundation" ]
[target."cfg(windows)".dependencies.windows]
version = "0.39.0"
features = ["Win32_Foundation"]

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
gtk = { version = "0.15", features = [ "v3_20" ] }
gtk = { version = "0.15", features = ["v3_20"] }

[features]
devtools = [ ]
system-tray = [ ]
macos-private-api = [ ]
global-shortcut = [ ]
clipboard = [ ]
devtools = []
system-tray = []
macos-private-api = []
global-shortcut = []
clipboard = []
6 changes: 6 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.5.3]

### New features

- [`7aa30dec`](https://www.github.com/tauri-apps/tauri/commit/7aa30dec85a17c3d3faaf3841b93e10991b991b0)([#8620](https://www.github.com/tauri-apps/tauri/pull/8620)) Add `priority`, `section` and `changelog` options in Debian config.

## \[1.5.2]

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "1.5.2"
version = "1.5.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
Expand Down
Loading

0 comments on commit a4b82d9

Please sign in to comment.