-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (47 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
56 lines (47 loc) · 1.18 KB
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
# SPDX-FileCopyrightText: 2025 The Neeml Developers
#
# SPDX-License-Identifier: Apache-2.0
[package]
authors = ["Dom Rodriguez <shymega@shymega.org.uk>"]
categories = ["cloud", "email"]
edition = "2018"
description = "A fast proxy for Google Mail and Outlook 365 - using native HTTP APIs."
homepage = "https://github.com/neeml/exchanger"
keywords = ["imap", "dav", "smtp", "caldav", "carddav", "exchange", "cloud", "email", "gmail", "proxy"]
license = "Apache-2.0"
name = "exchanger"
readme = "README.md"
repository = "https://github.com/neeml/exchanger.git"
rust-version = "1.69.0"
version = "0.1.0"
[lib]
name = "exchanger"
path = "src/lib.rs"
[[bin]]
name = "exchanger"
path = "src/main.rs"
[features]
default = []
test-tool = []
[dependencies]
anyhow = { version = "1.0.100", default-features = false }
thiserror = "2.0.18"
exchange-rs = { git = "https://github.com/neeml/exchange-rs", branch = "main" }
[profile.dev]
lto = true
opt-level = 3
codegen-units = 1
debug = true
[profile.dev.package."*"]
codegen-units = 1
opt-level = 3
debug = true
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
debug = false
[profile.release.package."*"]
codegen-units = 1
opt-level = 3
debug = false