-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 828 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
30
31
32
33
[package]
authors = ["TheDarkBug"]
edition = "2021"
license = "GPL-3"
name = "num-string"
repository = "https://github.com/TheDarkBug/num-string"
version = "3.1.0"
[lib]
crate-type = ["dylib"]
name = "num_string"
[dependencies]
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
clap = {version = "3.1.12", features = ["derive"]}
sscanf = "0.3.1"
[target.'cfg(not(target_os = "android"))'.build-dependencies]
tauri-build = {version = "1.0.4"}
[target.'cfg(not(target_os = "android"))'.dependencies]
tauri = { version = "1.0.5", features = ["clipboard-all"] }
tauri-macros = "1.0.3"
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
[target.'cfg(target_os="android")'.dependencies]
jni = {version = "0.19.0", default-features = false}
ndk = "0.7.0"
ndk-sys = "0.4.0"