-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (34 loc) · 845 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
40
41
[package]
name = "secret-santa"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "secret-santa"
[dependencies]
actix-cors = "0.6.4"
actix-files = "0.6.5"
actix-rt = "2.9.0"
actix-web = "4.4.0"
bore-cli = "0.5.0"
derive_more = "0.99.11"
dotenv = "0.15.0"
env_logger = "0.10.0"
log = "0.4.20"
rand = "0.8.5"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.16.1", features = ["full"] }
actix-web-static-files = "4.0"
static-files = "0.2.1"
[build-dependencies]
static-files = "0.2.1"
winres = "0.1"
[package.metadata.bundle]
name = "Secret Santa"
identifier = "tunnel.guibeira.com"
icon = ["icons/santa.icns"]
resources = ["icons/santa.icns"]