mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-22 07:57: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]]
|
[[package]]
|
||||||
name = "cxx"
|
name = "cxx"
|
||||||
version = "1.0.69"
|
version = "1.0.72"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"cxxbridge-flags",
|
"cxxbridge-flags",
|
||||||
@ -26,11 +26,11 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cxxbridge-flags"
|
name = "cxxbridge-flags"
|
||||||
version = "1.0.69"
|
version = "1.0.72"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cxxbridge-macro"
|
name = "cxxbridge-macro"
|
||||||
version = "1.0.69"
|
version = "1.0.72"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -98,6 +98,6 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-ident"
|
name = "unicode-ident"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
|
checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
|
||||||
|
@ -1,12 +1,6 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
|
exclude = ["external"]
|
||||||
members = [
|
members = ["base", "boot", "core", "init", "sepolicy"]
|
||||||
"base",
|
|
||||||
"boot",
|
|
||||||
"core",
|
|
||||||
"init",
|
|
||||||
"sepolicy",
|
|
||||||
]
|
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = "z"
|
opt-level = "z"
|
||||||
@ -23,4 +17,4 @@ panic = "abort"
|
|||||||
strip = true
|
strip = true
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
cxx = { path = "../src/external/cxx-rs" }
|
cxx = { path = "external/cxx-rs" }
|
||||||
|
@ -7,4 +7,4 @@ edition = "2021"
|
|||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cxx = "1.0.69"
|
cxx = { path = "../external/cxx-rs" }
|
||||||
|
@ -9,4 +9,4 @@ path = "lib.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
base = { path = "../base" }
|
base = { path = "../base" }
|
||||||
cxx = "1.0.69"
|
cxx = { path = "../external/cxx-rs" }
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
pub use base;
|
pub use base;
|
||||||
pub use logging::*;
|
use logging::*;
|
||||||
|
|
||||||
mod logging;
|
mod logging;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user