Compare commits

..

No commits in common. "b6ef4241ca36f2666c9e5eef5c10bbc0be5ef0c7" and "e782617f085d6523e6e1d055ccd4247b9a39f4f4" have entirely different histories.

7 changed files with 900 additions and 1110 deletions

View File

@ -9,10 +9,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [0.11.3] - 2024-04-11
- Updated dependencies
- Replaced url validation with url crate in imgurs-cli
## [0.11.2] - 2023-06-22
- Updated dependencies
- Fix deprecation warning of base64 crate.
@ -162,9 +158,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- upload image
<!-- next-url -->
[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.11.3...HEAD
[0.11.3]: https://github.com/MedzikUser/imgurs/commits/v0.11.3
[0.11.2]: https://github.com/MedzikUser/imgurs/commits/v0.11.2
[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.11.1...HEAD
[0.11.1]: https://github.com/MedzikUser/imgurs/commits/v0.11.1
[0.11.0]: https://github.com/MedzikUser/imgurs/commits/v0.11.0
[0.10.0]: https://github.com/MedzikUser/imgurs/commits/v0.10.0

1959
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@ resolver = "2"
[package]
name = "imgurs"
version = "0.11.3"
version = "0.11.2"
description = "API for Imgur"
license = "BSD-3-Clause"
authors = ["M3DZIK <me@medzik.dev>"]
@ -27,10 +27,10 @@ codegen-units = 1
[dependencies]
# HTTP
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "multipart"] }
# Request
base64 = "0.22"
url = "2.5.0" # validate url address
base64 = "0.21"
validator = "0.16" # validate url address
# Response
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
@ -40,4 +40,4 @@ thiserror = "1.0"
[dev-dependencies]
# Async tests
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }

View File

@ -1,10 +1,16 @@
[total-lines]: https://img.shields.io/tokei/lines/github/MedzikUser/HomeDisk?style=for-the-badge&logo=github&color=fede00
[code-size]: https://img.shields.io/github/languages/code-size/MedzikUser/HomeDisk?style=for-the-badge&color=c8df52&logo=github
[crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
[docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
[ci]: https://img.shields.io/github/workflow/status/MedzikUser/rust-crypto-utils/Rust/main?style=for-the-badge&logo=github
# Imgurs - CLI and Library for Imgur API
[![total-lines]](https://github.com/MedzikUser/HomeDisk)
[![code-size]](https://github.com/MedzikUser/HomeDisk)
[![crates-io]](https://crates.io/crates/imgurs)
[![docs-rs]](https://docs.rs/imgurs)
[![ci]](https://github.com/MedzikUser/imgurs/actions/workflows/rust.yml)
## Screenshots

View File

@ -1,6 +1,6 @@
[package]
name = "imgurs-cli"
version = "0.11.3"
version = "0.11.2"
description = "CLI for Imgur"
license = "BSD-3-Clause"
authors = ["M3DZIK <me@medzik.dev>"]
@ -16,11 +16,11 @@ path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }
# CLI
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
clap = { version = "4.1", features = ["derive"] }
clap_complete = "4.1"
clap_mangen = "0.2"
# Errors
@ -28,19 +28,19 @@ anyhow = "1.0"
# Logger
log = { version = "0.4", features = ["release_max_level_info"] }
simple_logger = "4.3"
colored = "2.1"
simple_logger = "4.0"
colored = "2.0"
# Config
toml = "0.8"
toml = "0.7"
serde = { version = "1.0", features = ["derive"] }
# Other
chrono = "0.4" # parse upload date
notify-rust = "4.11" # send notification after upload
dirs = "5.0" # get system configuration directory
notify-rust = "4.7" # send notification after upload
dirs = "4.0" # get system configuration directory
imgurs = { path = "..", version = "0.11.0", features = ["full"] }
[target.'cfg(not(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten")))))'.dependencies]
arboard = "3.3" # copy url to clipboard
arboard = "3.2" # copy url to clipboard

View File

@ -9,7 +9,6 @@ pub(crate) use client::api_url;
pub use client::ImgurClient;
pub use image_type::*;
pub use send_api_request::*;
use url::Url;
use crate::{Error, Result};
@ -70,7 +69,7 @@ impl ImgurClient {
image = BASE64_STANDARD.encode(bytes)
}
// validate url adress
else if Url::parse(path).is_err() {
else if !validator::validate_url(path) {
Err(Error::InvalidUrlOrFile(path.to_string()))?;
}

View File

@ -1,4 +1,4 @@
//! [![github]](https://github.com/M3DZIK/imgurs)
//! [![github]](https://github.com/MedzikUser/imgurs)
//! [![crates-io]](https://crates.io/crates/imgurs)
//! [![docs-rs]](https://docs.rs/imgurs)
//!
@ -19,7 +19,7 @@
//! your application, simply add it to your project's `Cargo.toml`.
//! ```toml
//! [dependencies]
//! imgurs = "0.11.3"
//! imgurs = "0.8.0"
//! ```
//!
//! # Example Usage