-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
29 lines (24 loc) · 930 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "cryptor_jni"
version = "0.1.0"
authors = ["Fernando Cejas <android10@fernandocejas.com>"]
edition = "2021"
build = "build.rs"
# See more keys and their definitions at
# https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(target_os="android")'.dependencies]
jni = { version = "0.21.1", default-features = false }
# Dynamic Library: https://doc.rust-lang.org/reference/linkage.html
[lib]
crate-type = ["staticlib", "cdylib"]
[dependencies]
phf = { version = "0.11.1", features = ['macros'] }
serde = { version = '1.0.118', features = ['derive'] }
toml = "0.7.2"
cryptor = { path = "../cryptor", version = "0.1.0" }
cryptor_global = { path = "../cryptor_global", version = "0.1.0" }
[build-dependencies]
phf = { version = "0.11.1", features = ['macros'] }
serde = { version = '1.0.118', features = ['derive'] }
toml = "0.7.2"
cryptor_global = { path = "../cryptor_global", version = "0.1.0" }