-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.01 KB
/
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
42
[package]
name = "rust-template"
version = "0.1.0"
authors = ["Christian Visintin <christian.visintin@veeso.dev>"]
edition = "2021"
categories = ["network-programming"]
description = ""
homepage = "https://github.com/veeso-dev/rust-template"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/veeso-dev/rust-template"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "rust-template"
path = "src/main.rs"
[dependencies]
anyhow = "1"
envy = "0.4"
lazy_static = "1.5"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
#actix
actix-multipart = "^0.7"
actix-web = "4"
#async stuff
reqwest = { version = "0.12", features = ["rustls-tls"] }
serde_json = "1"
serde_with = "^3"
tokio = { version = "1", features = ["io-std", "net", "fs"] }
tracing = "^0.1"
tracing-subscriber = "^0.3"
[dev-dependencies]
actix-rt = "^2"
env_logger = "^0.11"
pretty_assertions = "^1"