-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (31 loc) · 921 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
34
35
36
37
38
39
[package]
name = "train-helper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Generated using: http://romannurik.github.io/AndroidAssetStudio/icons-launcher.html
[package.metadata.android]
res = "android_res"
icon = "@mipmap/skm_launcher"
[[package.metadata.android.permission]]
name = "android.permission.INTERNET"
# Enable symbols for profiling
#[profile.release]
#debug = 1
[dependencies]
macroquad = "0.3"
reqwest = { version = "0.11.11", default-features = false, features = ["blocking", "rustls-tls", "json"] }
futures = "0.3"
regex = "1.3.3"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
tokio = {version = "1.21.0", features = ["full"]}
[dev-dependencies]
serde_json = "1.0.85"
criterion = "0.3"
[[bench]]
name = "my_benchmark"
harness = false
[lib]
name = "train_helper_lib"
path = "src/lib.rs"