-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.39 KB
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
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "osars"
version = "0.3.1"
edition = "2024"
description = "Rust client library for OpenScheduleAPI - educational schedule management system"
readme = "README.md"
keywords = ["schedule", "education", "api-client", "college", "university"]
categories = ["api-bindings"]
license = "MIT"
authors = ["Vadim <vadim@storozhiloff.ru>"]
repository = "https://github.com/bircoder432/osars"
documentation = "https://docs.rs/osars"
homepage = "https://github.com/bircoder432/osars"
[lib]
name = "osars"
[features]
default = []
logging = ["tracing", "tracing-subscriber"]
full = ["logging"]
[dependencies]
chrono = { version = "0.4.42", features = ["serde"] }
reqwest = { version = "0.12.24", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.48", features = ["full"] }
tracing = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter", "fmt"] }
urlencoding = "2.1"
[dev-dependencies]
mockito = "1.7"
tokio = { version = "1.48", features = ["full"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.release]
pre-release-replacements = [
{ file="README.md", search="osars = \"0.1.0\"", replace="osars = \"{{version}}\"" },
{ file="README.md", search="version = \"0.1.0\"", replace="version = \"{{version}}\"" },
]