Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
b496923c
Commit
b496923c
authored
Jul 24, 2022
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Cargo.toml
parent
759d196a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
17 deletions
+11
-17
Cargo.lock
native/src/Cargo.lock
+5
-5
Cargo.toml
native/src/Cargo.toml
+3
-9
Cargo.toml
native/src/base/Cargo.toml
+1
-1
Cargo.toml
native/src/core/Cargo.toml
+1
-1
lib.rs
native/src/core/lib.rs
+1
-1
No files found.
native/src/Cargo.lock
View file @
b496923c
...
...
@@ -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
"
native/src/Cargo.toml
View file @
b496923c
[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"
}
native/src/base/Cargo.toml
View file @
b496923c
...
...
@@ -7,4 +7,4 @@ edition = "2021"
path
=
"lib.rs"
[dependencies]
cxx
=
"1.0.69"
cxx
=
{
path
=
"../external/cxx-rs"
}
native/src/core/Cargo.toml
View file @
b496923c
...
...
@@ -9,4 +9,4 @@ path = "lib.rs"
[dependencies]
base
=
{
path
=
"../base"
}
cxx
=
"1.0.69"
cxx
=
{
path
=
"../external/cxx-rs"
}
native/src/core/lib.rs
View file @
b496923c
pub
use
base
;
pub
use
logging
::
*
;
use
logging
::
*
;
mod
logging
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment