This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (57 loc) · 1.41 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
67
68
69
70
71
[package]
name = "mailsync"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "3.3.2"
actix-cors = "0.5.4"
actix-files = "0.5.0"
log = "0.4.14"
base64 = "0.13.0"
actix-governor = "0.2.4"
envy = "0.4.2"
anyhow = "1.0.44"
mailparse = "0.13.6"
thiserror = "1.0.30"
lazy_static = "1.4.0"
ratelimit_meter = "5.0.0"
nonzero_ext = "0.3.0"
[dependencies.sea-query]
version = "0.18.1"
features = ["backend-mysql"]
[dependencies.reqwest]
version = "0.11.6"
default-features = false
features = ["json", "rustls-tls"]
[dependencies.refinery]
version = "0.7.0"
features = ["mysql-notls"]
[dependencies.log4rs]
version = "1.0.0"
default-features = false
features = ["console_appender", "config_parsing", "yaml_format"]
[dependencies.serde]
version = "1.0.130"
features = ["derive"]
[dependencies.authlander-client]
git = "https://github.com/MrFriendly-B-V/AuthlanderClient-rs.git"
tag = "0.1.0"
[dependencies.mysql]
version = "21.0.2"
default-features = false
[dependencies.tokio]
version = "1.13.0"
default-features = false
features = ["rt", "rt-multi-thread"]
[dependencies.espocrm-rs]
git = "https://github.com/TheDutchMC/espocrm-rs"
branch = "master"
[patch.crates-io.mysql]
git = "https://github.com/TheDutchMC/rust-mysql-simple"
[patch.crates-io.refinery]
git = "https://github.com/TheDutchMC/refinery"
[patch.crates-io.refinery-core]
git = "https://github.com/TheDutchMC/refinery"
[profile.release]
lto = true
panic = "abort"