-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 830 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]
name = "get_paper_rs"
version = "0.4.0"
edition = "2021"
description = "An application to download CAIE past papers"
# cargo bundle --release
[package.metadata.bundle]
name = "Get Paper Rust"
identifier = "com.iewnfod.getPaperRs"
copyright = "Copyright (c) Iewnfod 2023. All rights reserved."
short_description = "Get CAIE Past Papers"
[profile.release]
lto = "fat"
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fltk = { version = "^1.4", features = ["fltk-bundled"] }
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = "*"
serde_derive = "*"
serde_json = "*"
walkdir = "2.3.3"
open = "*"
fltk-grid = "0.3.1"
rand = "0.8.5"
hotwatch = "0.5.0"
dirs = "5.0.1"
anyhow = "1.0.75"