chore: moved cargo manifest in root

This commit is contained in:
zaaarf 2023-08-20 09:45:09 +02:00
parent 158a0a7b13
commit 9e25536138
No known key found for this signature in database
GPG key ID: 6445A5CD15E5B40C
3 changed files with 5 additions and 7 deletions

9
.gitignore vendored
View file

@ -15,6 +15,7 @@ build/
out/
!**/src/main/**/out/
!**/src/test/**/out/
.idea/*
### Eclipse ###
.apt_generated
@ -41,9 +42,7 @@ bin/
### Mac OS ###
.DS_Store
.idea/*
### Rust ###
src/main/rust/Cargo.lock
src/main/rust/.cargo/*
src/main/rust/target/*
Cargo.lock
.cargo/*
target/*

View file

@ -3,11 +3,10 @@ name = "codemp-intellij"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
codemp = { git = "ssh://git@github.com/codewithotherpeopleandchangenamelater/codemp.git", tag = "v0.4.2" }
jni = "0.21.1"
[lib]
crate_type = ["cdylib"]
path = "src/main/rust/lib.rs"