-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
48 lines (44 loc) · 1.46 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
43
44
45
46
47
48
[package]
name = "pigeon-rs"
version = "0.4.2"
authors = ["quambene <[email protected]>"]
description = "Command line tool for cheap and efficient email automation"
edition = "2021"
homepage = "https://github.com/quambene/pigeon-rs"
repository = "https://github.com/quambene/pigeon-rs"
documentation = "https://github.com/quambene/pigeon-rs"
keywords = ["mail", "email", "automation", "cli"]
categories = ["command-line-utilities", "email"]
readme = "README.md"
license = "Apache-2.0"
[[bin]]
name = "pigeon"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/cmd/lib.rs"
[dependencies]
anyhow = "1.0"
rusoto_ses = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_core = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_credential = "0.48.0"
yaml-rust = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.34"
tokio = "1.37"
csv = "1.3"
clap = { version = "4.5.4", features = ["cargo"] }
chrono = "0.4"
polars = { version = "0.32", features = ["dtype-u8"] }
connectorx = { version = "0.3.2", features = ["src_postgres", "dst_arrow2"] }
postgres = "0.19.2"
url = "2.5"
uuid = { version = "1.8", features = ["v4"] }
lettre = { version = "0.11", default-features = false, features = ["builder", "pool", "smtp-transport", "file-transport", "rustls-tls"] }
infer = "0.16"
bytes = "1.6"
base64 = "0.22"
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"
tempfile = "3.10.1"