chore(cli): pin tauri-mobile to v0.1.0

This commit is contained in:
Lucas Nogueira 2022-12-07 15:53:41 -03:00
parent 02706c92f6
commit aa18c7d671
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1
2 changed files with 6 additions and 35 deletions

39
tooling/cli/Cargo.lock generated
View File

@ -987,19 +987,6 @@ version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e4f5d6e192964d498b45abee72ca445e91909094bc8e8791259e82c2a0d1aa6"
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
"humantime 1.3.0",
"log",
"regex",
"termcolor",
]
[[package]]
name = "env_logger"
version = "0.9.1"
@ -1007,7 +994,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c90bf5f19754d10198ccb95b70664fc925bd1fc090a0fd9a6ebc54acc8cd6272"
dependencies = [
"atty",
"humantime 2.1.0",
"humantime",
"log",
"regex",
"termcolor",
@ -1436,7 +1423,7 @@ dependencies = [
"log",
"pest",
"pest_derive",
"quick-error 2.0.1",
"quick-error",
"serde",
"serde_json",
]
@ -1563,15 +1550,6 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "humantime"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
dependencies = [
"quick-error 1.2.3",
]
[[package]]
name = "humantime"
version = "2.1.0"
@ -2979,12 +2957,6 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quick-error"
version = "2.0.1"
@ -3860,7 +3832,7 @@ dependencies = [
"common-path",
"ctrlc",
"dialoguer",
"env_logger 0.9.1",
"env_logger",
"handlebars 4.3.1",
"heck 0.4.0",
"html5ever",
@ -3926,7 +3898,8 @@ dependencies = [
[[package]]
name = "tauri-mobile"
version = "0.1.0"
source = "git+https://github.com/tauri-apps/cargo-mobile?branch=dev#0b10eec445391f459af694ae6646f9dda6c60fc1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b23191ab3de2efc8d266ec26c16c1c90bd9e171f6f8ccdc56cd31cc9ad97130"
dependencies = [
"cocoa",
"colored 1.9.3",
@ -3935,7 +3908,6 @@ dependencies = [
"dunce",
"embed-resource",
"english-numbers",
"env_logger 0.7.1",
"freedesktop_entry_parser",
"handlebars 3.5.5",
"heck 0.4.0",
@ -3954,7 +3926,6 @@ dependencies = [
"path_abs",
"serde",
"serde_json",
"structopt",
"textwrap",
"thiserror",
"toml",

View File

@ -40,7 +40,7 @@ path = "src/main.rs"
[dependencies]
# tauri-mobile = { path = "../../../cargo-mobile/", default-features = false }
tauri-mobile = { git = "https://github.com/tauri-apps/cargo-mobile", branch = "dev", default-features = false }
tauri-mobile = { version = "0.1", default-features = false }
textwrap = { version = "0.11.0", features = ["term_size"] }
jsonrpsee = { version = "0.16", features = [ "client", "server" ]}
thiserror = "1"