-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (44 loc) · 1.36 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
[package]
name = "scma-gsync"
version = "2.3.3"
edition = "2021"
authors = ["Rob Donnelly <[email protected]>"]
description = "Synchronizes Southern California Mountaineers Association (SCMA) calendar events to Google Calendar"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rfdonnelly/scma-gsync"
publish = false
[profile.release]
strip = true
# Optimize for size
opt-level = "z"
lto = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[dependencies]
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
reqwest = { version = "0.12", default-features = false, features = ["cookies", "rustls-tls"] }
futures = "0.3"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
select = "0.6"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
chrono = { version = "0.4", features = ["clock", "serde"], default-features = false }
tap = "1"
# Needs to match the version used by google-calendar3 and google-people1
yup-oauth2 = "11"
google-calendar3 = "6"
google-people1 = "6"
hyper = "1"
hyper-rustls = "0.27"
hyper-util = { version = "0.1", features = ["client-legacy"] }
serde_json = "1"
html-escape = "0.2"
indexmap = "2"
anyhow = "1"
rustls = "0.23"
[dev-dependencies]
insta = { version = "1", features = ["yaml"] }