-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: FabianLars <[email protected]>
- Loading branch information
1 parent
db9ec4e
commit 07b6f9f
Showing
27 changed files
with
163 additions
and
114 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Changelog | ||
|
||
## \[1.5.2] | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
- Upgraded to `[email protected]` | ||
|
||
## \[1.5.1] | ||
|
||
### Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Changelog | ||
|
||
## \[1.4.3] | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
|
||
## \[1.4.2] | ||
|
||
### Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,43 @@ | ||
[package] | ||
name = "tauri-codegen" | ||
version = "1.4.2" | ||
authors = ["Tauri Programme within The Commons Conservancy"] | ||
categories = ["gui", "web-programming"] | ||
version = "1.4.3" | ||
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.3", path = "../tauri-utils", features = [ | ||
"build", | ||
] } | ||
tauri-utils = { version = "1.5.4", 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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Changelog | ||
|
||
## \[1.4.4] | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
- Upgraded to `[email protected]` | ||
|
||
## \[1.4.3] | ||
|
||
### Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
version = "1.4.4" | ||
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.5" | ||
tauri-codegen = { version = "1.4.2", default-features = false, path = "../tauri-codegen" } | ||
tauri-utils = { version = "1.5.3", path = "../tauri-utils" } | ||
tauri-codegen = { version = "1.4.3", default-features = false, path = "../tauri-codegen" } | ||
tauri-utils = { version = "1.5.4", 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 = [ ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Changelog | ||
|
||
## \[0.14.6] | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
- Upgraded to `[email protected]` | ||
|
||
## \[0.14.5] | ||
|
||
### What's Changed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Changelog | ||
|
||
## \[0.14.3] | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
|
||
## \[0.14.2] | ||
|
||
### Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.