Use of now() to have a precise period of time
[rtx3080.git] / Cargo.toml
1 [package]
2 name = "rtx3080"
3 version = "0.1.0"
4 authors = ["GrĂ©gory Burri <gregory.burri@matisa.ch>"]
5 edition = "2018"
6
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9 [dependencies]
10 reqwest = { version = "0.10", features = ["blocking", "json"] }
11 scraper = "0.12"
12 lettre = "0.9"
13 lettre_email = "0.9"
14 itertools = "0.9"
15 native-tls = "0.2"
16 serde = { version = "1.0", features = ["derive"] }
17 ron = "0.6" # Rust object notation, to load configuration files.
18
19 [profile.release]
20 codegen-units = 1
21 lto = true
22 panic = 'abort'