-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 1.01 KB
/
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
34
[package]
name = "globalcounter"
publish = false
version = "0.0.0"
description = "An Android fun app which allows users to increase/decrease a global counter value simultaneously."
homepage = "https://github.com/globalcounter/GlobalCounter"
repository = "https://github.com/globalcounter/GlobalCounter"
keywords = ["global", "counter", "fun", "android", "rust"]
authors = ["Rousan Ali <[email protected]>"]
readme = "README.md"
license = "MIT"
edition = "2018"
[lib]
name = "globalcounter"
crate-type = ["cdylib"]
path="app/src/main/rust/lib.rs"
[profile.release]
lto = true
[dependencies]
log = "0.4"
jni = "0.16"
tokio = { version = "0.2", features = ["rt-threaded", "rt-core", "io-driver", "time", "net", "tcp", "io-util", "stream", "blocking", "sync"] }
android_logger = "0.8"
lazy_static = "1.4"
sendify = "1.1"
num_cpus = "1.13.0"
tokio-tungstenite = { version = "0.10", features = ["tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.10", features = ["json"] }
futures = "0.3"