-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 872 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 872 Bytes
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
[package]
name = "cache_store"
version = "0.2.7"
edition = "2021"
description = "A quick and easy cache database for you to use!"
license = "MIT"
repository = "https://github.com/carghai/CacheStore"
homepage = "https://carghaiwebsite.web.app/#/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 2
[profile.release]
opt-level = 3
[dependencies]
rocket = "0.4.11"
rocket_contrib = { version = "0.4.11", features = ["json"] }
serde = { version = "1.0.145", features = ["derive"] }
reqwest = { version = "0.11.12", features = ["json"] }
serde_json = "1.0.85"
tokio = {version = "1.23.1", features = ["full"]}
better_file_maker = "0.1.9"
txt_writer = "0.1.4"
once_cell = "1.15.0"
openssl = { version = "0.10.41", features = ["vendored"] }
openssl-sys = {version = "0.9.75", features = ["vendored"]}