-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1015 Bytes
/
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
[package]
name = "cy-celcat"
description = "Safe wrapper around CY Cergy Paris Univertity’s Celcat API"
keywords = ["celcat", "timetabler", "api"]
categories = ["api-bindings"]
version = "0.3.3"
edition = "2018"
readme = "README.md"
repository = "https://github.com/luc65r/cy-celcat"
license = "MIT"
authors = ["Lucas Ransan <[email protected]>"]
include = ["/src/**/*", "/Cargo.toml", "/README.md", "/LICENSE"]
[lib]
name = "celcat"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
paste = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = { version = "1", optional = true }
log = { version = "0.4", optional = true }
regex = { version = "1.5", optional = true }
reqwest = { version = "0.11", features = ["json", "cookies"], optional = true }
thiserror = { version = "1.0", optional = true }
[features]
default = ["fetch"]
fetch = ["lazy_static", "log", "regex", "reqwest", "thiserror"]
[workspace]
members = ["fetch"]
default-members = [".", "fetch"]