Skip to content

Commit

Permalink
Revert cargo.toml style
Browse files Browse the repository at this point in the history
  • Loading branch information
Legend-Master committed Mar 12, 2024
1 parent 8b0f76f commit 6d23f17
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions plugins/updater/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,27 @@ rust-version = { workspace = true }
links = "tauri-plugin-updater"

[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ]

[build-dependencies]
tauri-plugin = { workspace = true, features = ["build"] }
tauri-plugin = { workspace = true, features = [ "build" ] }

[dependencies]
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",
] }
reqwest = { version = "0.11", default-features = false, features = [ "json", "stream" ] }
url = { workspace = true }
http = "0.2"
dirs-next = "2"
minisign-verify = "0.2"
time = { version = "0.3", features = ["parsing", "formatting"] }
time = { version = "0.3", features = [ "parsing", "formatting" ] }
base64 = "0.21"
percent-encoding = "2"
semver = { version = "1", features = ["serde"] }
semver = { version = "1", features = [ "serde" ] }
futures-util = "0.3"
tempfile = "3"
zip = "0.6"
Expand All @@ -53,6 +50,6 @@ flate2 = "1.0.27"
mockito = "0.31"

[features]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = [ "reqwest/native-tls" ]
native-tls-vendored = [ "reqwest/native-tls-vendored" ]
rustls-tls = [ "reqwest/rustls-tls" ]

0 comments on commit 6d23f17

Please sign in to comment.