minor version

This commit is contained in:
rustdesk 2022-07-14 23:26:03 +08:00
parent c49bbc261c
commit 9498b77c0a
3 changed files with 32 additions and 36 deletions

62
Cargo.lock generated
View File

@ -2144,7 +2144,7 @@ dependencies = [
"log",
"mac_address",
"protobuf",
"protobuf-codegen-pure",
"protobuf-codegen",
"quinn",
"rand 0.8.5",
"regex",
@ -3526,60 +3526,56 @@ dependencies = [
[[package]]
name = "protobuf"
version = "3.0.0-alpha.2"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5ef59c35c7472ce5e1b6c5924b87585143d1fc2cf39eae0009bba6c4df62f1"
checksum = "4ee4a7d8b91800c8f167a6268d1a1026607368e1adc84e98fe044aeb905302f7"
dependencies = [
"bytes",
"once_cell",
"protobuf-support",
"thiserror",
]
[[package]]
name = "protobuf-codegen"
version = "3.0.0-alpha.2"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89100ee819f69b77a4cab389fec9dd155a305af4c615e6413ec1ef9341f333ef"
checksum = "07b893e5e7d3395545d5244f8c0d33674025bd566b26c03bfda49b82c6dec45e"
dependencies = [
"anyhow",
"once_cell",
"protobuf",
"protobuf-parse",
"thiserror",
]
[[package]]
name = "protobuf-codegen-pure"
version = "3.0.0-alpha.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79453e74d08190551e821533ee42c447f9e21ca26f83520e120e6e8af27f6879"
dependencies = [
"anyhow",
"protobuf",
"protobuf-codegen",
"protobuf-parse",
"thiserror",
]
[[package]]
name = "protobuf-parse"
version = "3.0.0-alpha.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c265ffc69976efc3056955b881641add3186ad0be893ef10622482d80d1d2b68"
dependencies = [
"anyhow",
"protobuf",
"protoc",
"regex",
"tempfile",
"thiserror",
]
[[package]]
name = "protoc"
version = "3.0.0-alpha.2"
name = "protobuf-parse"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f1f8b318a54d18fbe542513331e058f4f8ce6502e542e057c50c7e5e803fdab"
checksum = "9b1447dd751c434cc1b415579837ebd0411ed7d67d465f38010da5d7cd33af4d"
dependencies = [
"anyhow",
"indexmap",
"log",
"protobuf",
"protobuf-support",
"tempfile",
"thiserror",
"which 4.2.5",
]
[[package]]
name = "protobuf-support"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ca157fe12fc7ee2e315f2f735e27df41b3d97cdd70ea112824dac1ffb08ee1c"
dependencies = [
"thiserror",
]
[[package]]
name = "quest"
version = "0.3.0"

View File

@ -101,7 +101,7 @@ async-process = "1.3"
[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.11"
jni = "0.19.0"
jni = "0.19"
[target.'cfg(any(target_os = "android", target_os = "ios"))'.dependencies]
flutter_rust_bridge = "1.30.0"

View File

@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
protobuf = { version = "3.1.0", features = ["with-bytes"] }
protobuf = { version = "3.1", features = ["with-bytes"] }
tokio = { version = "1.15", features = ["full"] }
tokio-util = { version = "0.6", features = ["full"] }
futures = "0.3"
@ -38,7 +38,7 @@ mac_address = "1.1"
quic = []
[build-dependencies]
protobuf-codegen = { version = "3.1.0" }
protobuf-codegen = { version = "3.1" }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }