-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 954 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
[package]
name = "rust_worker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
skia-safe = { version = "0.62.0", features = ["webp-encode"] }
webp = "0.2.2"
mongodb = { version = "2.0.2", default-features = false, features = [
"async-std-runtime",
] }
bson = { version = "2", features = [
"chrono-0_4",
] } # Needed for using chrono datetime in doc
tokio = { version = "1.21.2", features = ["full"] }
chrono = "0.4" # Used for setting DateTimes
serde = "1" # Used in the Map Data into Structs section
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
rand = "0.8.5"
reqwest = { version = "0.11.13", features = [
"blocking",
"json",
"default-tls",
] }
image = "0.24.5"
redis = "0.23.0"
serde_json = "1.0"
futures = { version = "0.3", default-features = false, features = [
"thread-pool",
"futures-executor",
] }
rmp-serde = "1.1.1"