-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 763 Bytes
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
[package]
name = "fgp-gmail"
version = "1.0.0"
edition = "2021"
description = "FGP daemon for Gmail - fast email operations"
authors = ["Wolfgang Schoenberger"]
license = "MIT"
repository = "https://github.com/fast-gateway-protocol/gmail"
[[bin]]
name = "fgp-gmail"
path = "src/main.rs"
[dependencies]
# FGP daemon SDK with Python support for warm connections
fgp-daemon = { git = "https://github.com/fast-gateway-protocol/daemon.git", features = ["python"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Home directory
dirs = "6.0"
[profile.release]
lto = true
codegen-units = 1
strip = true