generated from veeso-dev/rust-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 868 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
[package]
name = "sesamo"
version = "0.2.1"
authors = ["Christian Visintin <[email protected]>"]
edition = "2021"
categories = ["network-programming"]
description = ""
homepage = "https://github.com/veeso-dev/sesamo"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/veeso-dev/sesamo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "sesamo"
path = "src/main.rs"
[dependencies]
aws-config = "1.1"
aws-sdk-sesv2 = "1.12"
actix-web = "^4"
anyhow = "^1"
base64 = "^0.22"
envy = "^0.4"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
thiserror = "^1"
tracing = "^0.1"
tracing-subscriber = "^0.3"
[dev-dependencies]
actix-rt = "^2"
env_logger = "^0.11"
pretty_assertions = "^1"