feat: initialize rust project

fix/data-structure
paring 2022-11-03 18:58:48 +09:00
parent 7a821f9181
commit f8252ab0be
Signed by: pikokr
GPG Key ID: DB839724AD14EC9F
4 changed files with 13 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
/Cargo.lock

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "skyhook-native"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
skyhook = { path = "./vendor/skyhook/skyhook" }

1
src/lib.rs Normal file
View File

@ -0,0 +1 @@
extern crate skyhook;

2
vendor/skyhook vendored

@ -1 +1 @@
Subproject commit 20d86356872b2317e1a9b392a581cfbe48bab75b
Subproject commit b3a6339e1a7496de4b2c7848805ce8e1e9ca6c25