1 | [package] |
2 | name = "weer_api" |
3 | version = "0.1.1" |
4 | edition = "2021" |
5 | description = "A wrapper library for using Weather API" |
6 | license = "MIT" |
7 | readme = "README.md" |
8 | keywords = ["weather" ] |
9 | categories = ["api-bindings" ] |
10 | repository = "https://github.com/Gael-devv/weer/tree/main/weer_api" |
11 | |
12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
13 | |
14 | [dependencies] |
15 | ureq = { version = "2.5.0" , features = ["json" , "charset" ] } |
16 | url = "2.2.2" |
17 | serde = { version = "1.0.141" , features = ["derive" ] } |
18 | serde_json = "1.0" |
19 | chrono = "0.4" |
20 | |