Compare commits

..

No commits in common. 'c00c4f7b988ccef36d5b20c62f075a82ea90e45a' and 'a15743bd6530007ab4711c0cdca9f86cff4d9d34' have entirely different histories.

744
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -1,6 +1,6 @@
[package] [package]
name = "animethemes-rs" name = "animethemes-rs"
version = "0.4.5" version = "0.4.4"
authors = ["trivernis <trivernis@protonmail.com>"] authors = ["trivernis <trivernis@protonmail.com>"]
edition = "2021" edition = "2021"
readme = "README.md" readme = "README.md"
@ -11,17 +11,17 @@ description = "A Rust wrapper for the AnimeThemes api"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
thiserror = "1.0.50" thiserror = "1.0.31"
tracing = "0.1.40" tracing = "0.1.35"
[dependencies.reqwest] [dependencies.reqwest]
version = "0.11.22" version = "0.11.11"
features = ["json"] features = ["json"]
[dependencies.serde] [dependencies.serde]
version = "1.0.193" version = "1.0.138"
features = ["serde_derive"] features = ["serde_derive"]
[dev-dependencies.tokio] [dev-dependencies.tokio]
version = "1.35.0" version = "1.19.2"
features = ["macros", "test-util"] features = ["macros", "test-util"]

@ -10,7 +10,7 @@ use serde::Serialize;
use std::collections::HashMap; use std::collections::HashMap;
use std::fmt::{Debug, Display}; use std::fmt::{Debug, Display};
pub static DEFAULT_API_ENDPOINT: &str = "https://api.animethemes.moe"; pub static DEFAULT_API_ENDPOINT: &str = "https://staging.animethemes.moe/api";
pub static DEFAULT_VIDEO_ENDPOINT: &str = "https://animethemes.moe/video/"; pub static DEFAULT_VIDEO_ENDPOINT: &str = "https://animethemes.moe/video/";
#[derive(Clone, Debug)] #[derive(Clone, Debug)]

Loading…
Cancel
Save