-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 751 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 751 Bytes
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
[package]
name = "tcmb_evds"
version = "0.1.0"
authors = ["Ahmet Sari <asari571@gmail.com>"]
description = "A Rust crate for reaching the database of The Central Bank of The Republic of Turkey (CBRT)."
repository = "https://github.com/asari555/tcmb_evds"
readme = "README.md"
keywords = ["currency", "tcmb", "tcmb_evds"]
categories = ["network-programming", "web-programming", "web-programming::http-client"]
license = "MIT"
exclude = [
"target/*",
"tests/*"
]
codecov = { repository = "https://github.com/asari555/tcmb_evds" }
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["async_mode"]
async_mode = []
sync_mode = []
[dependencies]
curl = "0.4.38"