diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 129e2cfe..9e98d669 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -13,10 +13,10 @@ crate-type = ["staticlib", "cdylib", "rlib"] tauri-build = { workspace = true, features = ["codegen", "isolation"] } [dependencies] -serde_json.workspace = true -serde.workspace = true +serde_json = { workspace = true } +serde = { workspace = true } tiny_http = "0.11" -log.workspace = true +log = { workspace = true } tauri-plugin-app = { path = "../../../plugins/app", version = "1.0.0" } tauri-plugin-log = { path = "../../../plugins/log", version = "1.0.0" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "1.0.0" } diff --git a/plugins/app/Cargo.toml b/plugins/app/Cargo.toml index 256ae07f..521ce69c 100644 --- a/plugins/app/Cargo.toml +++ b/plugins/app/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "tauri-plugin-app" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -tauri.workspace = true +tauri = { workspace = true } diff --git a/plugins/authenticator/Cargo.toml b/plugins/authenticator/Cargo.toml index 918f3fc0..7ee8fb22 100644 --- a/plugins/authenticator/Cargo.toml +++ b/plugins/authenticator/Cargo.toml @@ -2,19 +2,19 @@ name = "tauri-plugin-authenticator" version = "1.0.0" description = "Use hardware security-keys in your Tauri App." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } authenticator = "0.3.1" once_cell = "1" sha2 = "0.10" diff --git a/plugins/autostart/Cargo.toml b/plugins/autostart/Cargo.toml index 6aec6a26..5ff1f3b9 100644 --- a/plugins/autostart/Cargo.toml +++ b/plugins/autostart/Cargo.toml @@ -2,17 +2,17 @@ name = "tauri-plugin-autostart" version = "1.0.0" description = "Automatically launch your application at startup." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } auto-launch = "0.4" \ No newline at end of file diff --git a/plugins/cli/Cargo.toml b/plugins/cli/Cargo.toml index 04725796..2988a077 100644 --- a/plugins/cli/Cargo.toml +++ b/plugins/cli/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "tauri-plugin-cli" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } clap = { version = "4", features = ["string"] } diff --git a/plugins/clipboard/Cargo.toml b/plugins/clipboard/Cargo.toml index 83659a69..0d3b1e5e 100644 --- a/plugins/clipboard/Cargo.toml +++ b/plugins/clipboard/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "tauri-plugin-clipboard" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } links = "tauri-plugin-clipboard" [build-dependencies] -tauri-build.workspace = true +tauri-build = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] arboard = "3" diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index ec261cab..60f31dfc 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,19 +1,19 @@ [package] name = "tauri-plugin-dialog" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } links = "tauri-plugin-dialog" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } tauri-plugin-fs = { path = "../fs", version = "1.0.0" } [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] @@ -24,4 +24,4 @@ rfd = { version = "0.11", features = [ "gtk3", "common-controls-v6" ] } raw-window-handle = "0.5" [build-dependencies] -tauri-build.workspace = true +tauri-build = { workspace = true } diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index 3b3145a3..59b24d61 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -2,17 +2,17 @@ name = "tauri-plugin-fs" version = "1.0.0" description = "Access the file system." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -tauri.workspace = true -thiserror.workspace = true +serde = { workspace = true } +tauri = { workspace = true } +thiserror = { workspace = true } anyhow = "1" uuid = { version = "1", features = ["v4"] } glob = "0.3" diff --git a/plugins/global-shortcut/Cargo.toml b/plugins/global-shortcut/Cargo.toml index 02cca970..bf685739 100644 --- a/plugins/global-shortcut/Cargo.toml +++ b/plugins/global-shortcut/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "tauri-plugin-global-shortcut" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } global-hotkey = "0.2.1" diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index ecb9c82d..cb67760d 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "tauri-plugin-http" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +thiserror = { workspace = true } tauri-plugin-fs = { path = "../fs", version = "1.0.0" } glob = "0.3" rand = "0.8" diff --git a/plugins/localhost/Cargo.toml b/plugins/localhost/Cargo.toml index d3aec49d..5f303476 100644 --- a/plugins/localhost/Cargo.toml +++ b/plugins/localhost/Cargo.toml @@ -2,18 +2,18 @@ name = "tauri-plugin-localhost" version = "1.0.0" description = "Expose your apps assets through a localhost server instead of the default custom protocol." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } tiny_http = "0.12" http = "0.2" \ No newline at end of file diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index beea47aa..9e4c8508 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -2,20 +2,20 @@ name = "tauri-plugin-log" version = "1.0.0" description = "Configurable logging for your Tauri app." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] -tauri-build.workspace = true +tauri-build = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } serde_repr = "0.1" byte-unit = "4.0" log = { workspace = true, features = ["kv_unstable"] } diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index e3b7f24d..a6660eba 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,22 +1,22 @@ [package] name = "tauri-plugin-notification" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } links = "tauri-plugin-notification" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] -tauri-build.workspace = true +tauri-build = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } rand = "0.8" time = { version = "0.3", features = ["serde", "parsing", "formatting"] } url = { version = "2", features = ["serde"] } diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index c084092b..3dfc669c 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "tauri-plugin-os" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } os_info = "3" diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index 05b731aa..ec7ecf86 100644 --- a/plugins/persisted-scope/Cargo.toml +++ b/plugins/persisted-scope/Cargo.toml @@ -2,19 +2,19 @@ name = "tauri-plugin-persisted-scope" version = "1.0.0" description = "Save filesystem and asset scopes and restore them when the app is reopened." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } aho-corasick = "1.0" bincode = "1" tauri-plugin-fs = { path = "../fs", version = "1.0.0" } diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index dcab86c9..11623b33 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -2,19 +2,19 @@ name = "tauri-plugin-positioner" version = "1.0.4" description = "Position your windows at well-known locations." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } serde_repr = "0.1" [features] diff --git a/plugins/process/Cargo.toml b/plugins/process/Cargo.toml index c8a9c0d1..7a44f481 100644 --- a/plugins/process/Cargo.toml +++ b/plugins/process/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "tauri-plugin-process" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -tauri.workspace = true +tauri = { workspace = true } diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index fbef718c..a9eb609d 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "tauri-plugin-shell" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } shared_child = "1" regex = "1" open = "4" diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index 4d436334..2baa69e9 100644 --- a/plugins/single-instance/Cargo.toml +++ b/plugins/single-instance/Cargo.toml @@ -2,20 +2,20 @@ name = "tauri-plugin-single-instance" version = "1.0.0" description = "Ensure a single instance of your tauri app is running." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } exclude = ["/examples"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } [target.'cfg(target_os = "windows")'.dependencies.windows-sys] version = "0.48" diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index cc804695..da263e5f 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -2,19 +2,19 @@ name = "tauri-plugin-sql" version = "1.0.0" description = "Interface with SQL databases." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } futures-core = "0.3" sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "json", "time"] } time = "0.3" diff --git a/plugins/store/Cargo.toml b/plugins/store/Cargo.toml index 18f4d05d..3386b9fb 100644 --- a/plugins/store/Cargo.toml +++ b/plugins/store/Cargo.toml @@ -2,16 +2,16 @@ name = "tauri-plugin-store" version = "1.0.0" description = "Simple, persistent key-value store." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true \ No newline at end of file +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } \ No newline at end of file diff --git a/plugins/stronghold/Cargo.toml b/plugins/stronghold/Cargo.toml index 671b2136..80d04b0f 100644 --- a/plugins/stronghold/Cargo.toml +++ b/plugins/stronghold/Cargo.toml @@ -2,19 +2,19 @@ name = "tauri-plugin-stronghold" version = "1.0.0" description = "Store secrets and keys using the IOTA Stronghold encrypted database." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } iota_stronghold = "1" iota-crypto = "0.17" hex = "0.4" diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 9262c885..3230da31 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "tauri-plugin-updater" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -tauri.workspace = true -serde.workspace = true -serde_json.workspace = true -thiserror.workspace = true +tauri = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } +thiserror = { workspace = true } tokio = "1" reqwest = { version = "0.11", default-features = false, features = [ "json", "stream" ] } diff --git a/plugins/updater/tests/app-updater/Cargo.toml b/plugins/updater/tests/app-updater/Cargo.toml index 0d09ee9e..e3f94814 100644 --- a/plugins/updater/tests/app-updater/Cargo.toml +++ b/plugins/updater/tests/app-updater/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "app-updater" version = "0.1.0" -edition.workspace = true +edition = { workspace = true } [build-dependencies] -tauri-build.workspace = true +tauri-build = { workspace = true } [dependencies] -tauri.workspace = true -serde.workspace = true -serde_json.workspace = true +tauri = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } tauri-plugin-updater = { path = "../.." } tiny_http = "0.11" time = { version = "0.3", features = ["formatting"] } diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index 9e4d8d1a..f9c07c6f 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -2,19 +2,19 @@ name = "tauri-plugin-upload" version = "1.0.0" description = "Upload files from disk to a remote server over HTTP." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } tokio = { version = "1", features = [ "fs" ] } tokio-util = { version = "0.7", features = [ "codec" ] } reqwest = { version = "0.11", features = [ "json", "stream" ] } diff --git a/plugins/websocket/Cargo.toml b/plugins/websocket/Cargo.toml index 8e78b941..2f04e303 100644 --- a/plugins/websocket/Cargo.toml +++ b/plugins/websocket/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "tauri-plugin-websocket" version = "1.0.0" -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } exclude = ["/examples"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } rand = "0.8" futures-util = "0.3" tokio = { version = "1", features = ["net", "sync"] } diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index 5ef3716d..cd5cc835 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -2,18 +2,18 @@ name = "tauri-plugin-window-state" version = "1.0.0" description = "Save window positions and sizes and restore them when the app is reopened." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } bincode = "1.3" bitflags = "2" diff --git a/plugins/window/Cargo.toml b/plugins/window/Cargo.toml index aba08f72..e274079a 100644 --- a/plugins/window/Cargo.toml +++ b/plugins/window/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "tauri-plugin-window" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } [dependencies] -tauri.workspace = true -serde.workspace = true -thiserror.workspace = true +tauri = { workspace = true } +serde = { workspace = true } +thiserror = { workspace = true } [features] icon-png = ["tauri/icon-png"] diff --git a/shared/template/Cargo.toml b/shared/template/Cargo.toml index 5e3deb30..071f5654 100644 --- a/shared/template/Cargo.toml +++ b/shared/template/Cargo.toml @@ -1,19 +1,19 @@ [package] name = "tauri-plugin-{{name}}" version = "1.0.0" -edition.workspace = true -authors.workspace = true -license.workspace = true +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } links = "tauri-plugin-{{name}}" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] -tauri-build.workspace = true +tauri-build = { workspace = true } [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true \ No newline at end of file +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } \ No newline at end of file