mirror of
https://github.com/hexedtech/codemp-intellij.git
synced 2024-11-22 07:04:49 +01:00
chore: moved cargo manifest in root
This commit is contained in:
parent
158a0a7b13
commit
9e25536138
3 changed files with 5 additions and 7 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -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/*
|
||||||
|
|
|
@ -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"
|
Loading…
Reference in a new issue