-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (62 loc) · 2.14 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# 🐻❄️💌 email-service: charted's email service built in Rust that can be connected via gRPC
# Copyright 2023 Noelware, LLC. <team@noelware.org>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "charted-emails"
description = "🐻❄️💌 charted's email service built in Rust that can be connected via gRPC"
homepage = "https://charts.noelware.org/docs/services/emails/latest"
version = "0.2.0"
edition = "2021"
authors = ["Noel Towa <cutie@floofy.dev>", "Noelware Team <team@noelware.org>"]
license = "Apache-2.0"
[dependencies]
async-trait = "0.1.80"
chrono = "0.4.38"
color-eyre = "0.6.3"
dotenv = "0.15.0"
eyre = "0.6.12"
git2 = "0.18.3"
k8s-openapi = { version = "0.20.0", features = ["v1_26"] }
kube = { version = "0.87.2", features = ["derive", "runtime"] }
lettre = { version = "0.11.7", features = ["tokio1", "tracing", "tokio1-native-tls"] }
mustache = "0.9.0"
once_cell = "1.19.0"
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
prost = "0.12.4"
prost-types = "0.12.4"
regex = "1.10.4"
remi-core = "0.4.3"
remi-fs = { version = "0.4.3", features = ["serde", "log"] }
sentry = "0.32.3"
sentry-tower = "0.32.3"
sentry-tracing = "0.32.3"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
serde_yaml = "0.9.34+deprecated"
tokio = { version = "1.37.0", features = ["full"] }
tonic = { version = "0.10.2", features = ["tls"] }
tonic-health = "0.10.2"
tonic-reflection = "0.10.2"
tracing = "0.1.40"
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
url = "2.5.0"
[build-dependencies]
chrono = "0.4.38"
rustc_version = "0.4.0"
tonic-build = "0.11.0"
[profile.release]
strip = true
opt-level = "z"
lto = true