mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-21 23:47:39 +00:00
Update Cargo.toml
This commit is contained in:
parent
759d196aad
commit
b496923cbb
10
native/src/Cargo.lock
generated
10
native/src/Cargo.lock
generated
@ -17,7 +17,7 @@ checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
||||
|
||||
[[package]]
|
||||
name = "cxx"
|
||||
version = "1.0.69"
|
||||
version = "1.0.72"
|
||||
dependencies = [
|
||||
"cc",
|
||||
"cxxbridge-flags",
|
||||
@ -26,11 +26,11 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "cxxbridge-flags"
|
||||
version = "1.0.69"
|
||||
version = "1.0.72"
|
||||
|
||||
[[package]]
|
||||
name = "cxxbridge-macro"
|
||||
version = "1.0.69"
|
||||
version = "1.0.72"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -98,6 +98,6 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "unicode-ident"
|
||||
version = "1.0.1"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
|
||||
checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
|
||||
|
@ -1,12 +1,6 @@
|
||||
[workspace]
|
||||
|
||||
members = [
|
||||
"base",
|
||||
"boot",
|
||||
"core",
|
||||
"init",
|
||||
"sepolicy",
|
||||
]
|
||||
exclude = ["external"]
|
||||
members = ["base", "boot", "core", "init", "sepolicy"]
|
||||
|
||||
[profile.dev]
|
||||
opt-level = "z"
|
||||
@ -23,4 +17,4 @@ panic = "abort"
|
||||
strip = true
|
||||
|
||||
[patch.crates-io]
|
||||
cxx = { path = "../src/external/cxx-rs" }
|
||||
cxx = { path = "external/cxx-rs" }
|
||||
|
@ -7,4 +7,4 @@ edition = "2021"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
cxx = "1.0.69"
|
||||
cxx = { path = "../external/cxx-rs" }
|
||||
|
@ -9,4 +9,4 @@ path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
base = { path = "../base" }
|
||||
cxx = "1.0.69"
|
||||
cxx = { path = "../external/cxx-rs" }
|
||||
|
@ -1,5 +1,5 @@
|
||||
pub use base;
|
||||
pub use logging::*;
|
||||
use logging::*;
|
||||
|
||||
mod logging;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user