listenbrainz-rs/Cargo.toml

22 lines
679 B
TOML
Raw Permalink Normal View History

2021-01-09 03:36:14 +00:00
[package]
name = "listenbrainz"
2022-12-04 23:35:33 +00:00
version = "0.5.0"
2021-01-09 03:36:14 +00:00
authors = ["Koen Bolhuis <koen.bolhuis@gmail.com>"]
2022-11-16 01:14:31 +00:00
edition = "2021"
license = "MIT"
repository = "https://github.com/InputUsername/listenbrainz-rs.git"
homepage = "https://github.com/InputUsername/listenbrainz-rs"
readme = "README.md"
2021-01-14 02:35:12 +00:00
description = "ListenBrainz API bindings for Rust"
keywords = ["listenbrainz", "api", "bindings"]
2021-01-13 12:05:13 +00:00
categories = ["api-bindings"]
2021-01-14 02:35:12 +00:00
publish = true
2021-01-09 03:36:14 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2022-11-16 01:13:57 +00:00
attohttpc = { version = "0.24", features = ["json"] }