Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CryZe committed Oct 31, 2022
0 parents commit 57d89fe
Show file tree
Hide file tree
Showing 10 changed files with 1,371 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build]
target = "wasm32-unknown-unknown"
rustflags = ["-C", "target-feature=+bulk-memory,+mutable-globals,+nontrapping-fptoint,+sign-ext,+simd128"]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
186 changes: 186 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "lunistice-auto-splitter"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
asr-dotnet = { path = "asr-dotnet", features = ["il2cpp"] }
arrayvec = { version = "0.7.2", default-features = false }
spinning_top = "0.2.3"
itoa = { version = "1.0.1", default-features = false }
bytemuck = { version = "1.9.1", features = ["derive", "min_const_generics"] }

[lib]
crate-type = ["cdylib"]

[profile.release]
lto = true
panic = "abort"
strip = true

[profile.release.build-override]
opt-level = 0
2 changes: 2 additions & 0 deletions asr-dotnet/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
/Cargo.lock
15 changes: 15 additions & 0 deletions asr-dotnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "asr-dotnet"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
asr = { git = "https://github.com/CryZe/asr" }
bytemuck = { version = "1.9.1", features = ["derive", "min_const_generics"] }
bstr = { version = "1.0.1", default-features = false }
asr-dotnet-derive = { path = "asr-dotnet-derive" }

[features]
il2cpp = ["asr-dotnet-derive/il2cpp"]
16 changes: 16 additions & 0 deletions asr-dotnet/asr-dotnet-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "asr-dotnet-derive"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
syn = "1.0.95"
quote = "1.0.18"

[lib]
proc-macro = true

[features]
il2cpp = []
Loading

0 comments on commit 57d89fe

Please sign in to comment.