A Rust crate for interacting with IssueTrak's API. !! Project Abandoned
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
IssueTrak/Cargo.toml

16 lines
424 B

[package]
name = "IssueTrak"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = {features = ["blocking", "json"] }
uuid = { version = "1.1.2", features = ["fast-rng", "v4"]}
hmac = "0.12.1"
sha2 = "0.10.2"
base64 = "0.13.0"
chrono = "0.4.19"
serde_json = "1.0.81"
serde = {version = "1.0.144", features = ["derive"]}