-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (38 loc) · 906 Bytes
/
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
[package]
name = "crm_query"
version = "0.1.2"
authors = ["Tobias de Bruijn <[email protected]>"]
edition = "2021"
[dependencies]
serde_json = "1.0.85"
actix-web = "4.1.0"
actix-cors = "0.6.2"
envy = "0.4.2"
tracing = "0.1.36"
tracing-actix-web = "0.6.0"
thiserror = "1.0.30"
futures-util = "0.3.19"
tap = "1.0.1"
[dependencies.espocrm-rs]
version = "0.4.0"
features = ["tracing"]
[dependencies.tracing-subscriber]
version = "0.3.15"
features = ["env-filter"]
[dependencies.serde]
version = "1.0.144"
features = ["derive"]
[dependencies.reqwest]
version = "0.11.11"
default-features = false
features = ["rustls-tls", "json"]
[dependencies.tokio]
version = "1.21.0"
default-features = false
features = ["rt", "rt-multi-thread"]
[dependencies.authlander-client]
git = "https://github.com/MrFriendly-B-V/AuthlanderClient-rs.git"
tag = "0.2.0"
features = ["actix4"]
[profile.release]
strip = true