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/ out/
!**/src/main/**/out/ !**/src/main/**/out/
!**/src/test/**/out/ !**/src/test/**/out/
.idea/*
### Eclipse ### ### Eclipse ###
.apt_generated .apt_generated
@ -41,9 +42,7 @@ bin/
### Mac OS ### ### Mac OS ###
.DS_Store .DS_Store
.idea/*
### Rust ### ### Rust ###
src/main/rust/Cargo.lock Cargo.lock
src/main/rust/.cargo/* .cargo/*
src/main/rust/target/* target/*

View file

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