Skip to content

Commit

Permalink
v1.0.0 - refactor and fully new method
Browse files Browse the repository at this point in the history
  • Loading branch information
Centri3 committed Dec 29, 2022
1 parent 03e0f38 commit 8c6b2ff
Show file tree
Hide file tree
Showing 13 changed files with 555 additions and 779 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/target
/target
255 changes: 21 additions & 234 deletions Cargo.lock

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

26 changes: 5 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
[package]
name = "speng-seedloc"
version = "0.1.0"
edition = "2021"

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

[dependencies]
enigo = "0.0.14"
rand = "0.8.5"
sysinfo = "0.26.4"
windows = { version = "0.43.0", features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_System_Memory",
"Win32_System_ProcessStatus",
"Win32_System_Threading",
] }

[profile.dev]
overflow-checks = false
[workspace]
members = [
"crates/seedloc",
"crates/seedloc-handler",
]
1 change: 1 addition & 0 deletions build/seeds.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-1175671629 299793970 -808771962 -573742822 628935187
15 changes: 15 additions & 0 deletions crates/seedloc-handler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "seedloc-handler"
version = "0.0.0"
edition = "2021"

[dependencies]
bytemuck = { version = "1.12.3", features = ["min_const_generics"] }
once_cell = "1.16.0"
windows = { version = "0.43.0", features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_System_Memory",
"Win32_System_ProcessStatus",
"Win32_System_Threading",
] }
Loading

0 comments on commit 8c6b2ff

Please sign in to comment.