Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mu-impl-fast
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
40
Issues
40
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mu
mu-impl-fast
Commits
e8a7c0d3
Commit
e8a7c0d3
authored
Feb 15, 2019
by
Javad Ebrahimian Amiri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Specified some crate versions to solve compile error on newer toolchains
parent
fbfe7dba
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
90 additions
and
90 deletions
+90
-90
Cargo.toml
Cargo.toml
+85
-85
Cargo.toml
src/ast/Cargo.toml
+2
-2
Cargo.toml
src/gc/Cargo.toml
+2
-2
global_type_table.rs
src/gc/src/objectmodel/sidemap/global_type_table.rs
+1
-1
No files found.
Cargo.toml
View file @
e8a7c0d3
...
@@ -43,9 +43,9 @@ rodal = { git = "https://gitlab.anu.edu.au/mu/rodal", branch = "new", version =
...
@@ -43,9 +43,9 @@ rodal = { git = "https://gitlab.anu.edu.au/mu/rodal", branch = "new", version =
libc
=
"*"
libc
=
"*"
field-offset
=
"*"
field-offset
=
"*"
libloading
=
"*"
libloading
=
"*"
lazy_static
=
"
*"
lazy_static
=
"
0.2.11"
log
=
"
*"
log
=
"
0.3.8"
stderrlog
=
"
*"
stderrlog
=
"
0.2.3"
num
=
"*"
num
=
"*"
hprof
=
"*"
hprof
=
"*"
memmap
=
"*"
memmap
=
"*"
...
@@ -54,7 +54,7 @@ serde = "*"
...
@@ -54,7 +54,7 @@ serde = "*"
serde_derive
=
"*"
serde_derive
=
"*"
time
=
"*"
time
=
"*"
maplit
=
"*"
maplit
=
"*"
docopt
=
"
*"
docopt
=
"
0.8.1"
petgraph
=
"*"
petgraph
=
"*"
extprim
=
"*"
extprim
=
"*"
num-traits
=
"*"
num-traits
=
"*"
...
...
src/ast/Cargo.toml
View file @
e8a7c0d3
...
@@ -22,9 +22,9 @@ crate-type = ["rlib"]
...
@@ -22,9 +22,9 @@ crate-type = ["rlib"]
[dependencies]
[dependencies]
mu_utils
=
{path
=
"../utils"
}
mu_utils
=
{path
=
"../utils"
}
lazy_static
=
"
*
"
lazy_static
=
"
0.2.11
"
log
=
"*"
log
=
"*"
simple_logger
=
"*"
simple_logger
=
"*"
regex
=
"
*
"
regex
=
"
0.2.2
"
rodal
=
{
git
=
"https://gitlab.anu.edu.au/mu/rodal"
,
branch
=
"new"
,
version
=
"^0.1.13"
}
rodal
=
{
git
=
"https://gitlab.anu.edu.au/mu/rodal"
,
branch
=
"new"
,
version
=
"^0.1.13"
}
#rodal = { path = "../../rodal", version = "*" }
#rodal = { path = "../../rodal", version = "*" }
src/gc/Cargo.toml
View file @
e8a7c0d3
...
@@ -32,11 +32,11 @@ gcc = "*"
...
@@ -32,11 +32,11 @@ gcc = "*"
[dependencies]
[dependencies]
mu_utils
=
{path
=
"../utils"
}
mu_utils
=
{path
=
"../utils"
}
time
=
"*"
time
=
"*"
lazy_static
=
"
*
"
lazy_static
=
"
0.2.11
"
log
=
"*"
log
=
"*"
stderrlog
=
"*"
stderrlog
=
"*"
aligned_alloc
=
"*"
aligned_alloc
=
"*"
crossbeam
=
"
*
"
crossbeam
=
"
0.3.0
"
field-offset
=
"*"
field-offset
=
"*"
rodal
=
{
git
=
"https://gitlab.anu.edu.au/mu/rodal"
,
branch
=
"new"
,
version
=
"^0.1.13"
}
rodal
=
{
git
=
"https://gitlab.anu.edu.au/mu/rodal"
,
branch
=
"new"
,
version
=
"^0.1.13"
}
#rodal = { path = "../../rodal", version = "*" }
#rodal = { path = "../../rodal", version = "*" }
src/gc/src/objectmodel/sidemap/global_type_table.rs
View file @
e8a7c0d3
...
@@ -26,7 +26,7 @@ use objectmodel::sidemap::object_encode::SMALL_ID_WIDTH;
...
@@ -26,7 +26,7 @@ use objectmodel::sidemap::object_encode::SMALL_ID_WIDTH;
/// represents a chunk of memory as global type table, which contains some metadata for the
/// represents a chunk of memory as global type table, which contains some metadata for the
/// type table and all the type encoding entries.
/// type table and all the type encoding entries.
#[repr(C
,
packed
)]
#[repr(C)]
pub
struct
GlobalTypeTable
{
pub
struct
GlobalTypeTable
{
/// current index for small entries
/// current index for small entries
small_entry_i
:
usize
,
small_entry_i
:
usize
,
...
...
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