Last active
July 28, 2020 10:43
-
-
Save Mefistophell/6bcee79abc7fc14d04d45de815d109a8 to your computer and use it in GitHub Desktop.
Rust "Find exam" project configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "find_exam" | |
version = "0.1.0" | |
authors = ["Ewen Blotskyi <[email protected]>"] | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
serde = { version = "1.0", features = ["derive"] } | |
serde_json = "1.0" | |
chrono = "0.4" | |
[dependencies.reqwest] | |
version = "0.10.6" | |
default-features = false | |
features = ["blocking", "native-tls"] | |
[profile.release] | |
panic = 'abort' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment