Skip to content

Commit

Permalink
v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
SteelAlloy committed Sep 15, 2024
1 parent d59d32b commit 08282ad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "thumbor"
description = "A Rust client for the Thumbor image service"
version = "0.0.3"
version = "0.0.4"
repository = "https://github.com/SteelAlloy/thumbor-rs"
documentation = "https://docs.rs/thumbor"
readme = "README.md"
license = "MIT"
edition = "2021"
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Thumbor for rust

[![Latest Version](https://img.shields.io/crates/v/thumbor.svg)](https://crates.io/crates/thumbor)
[![Rust Documentation](https://docs.rs/thumbor/badge.svg)](https://docs.rs/thumbor)
![Crates.io](https://img.shields.io/crates/l/thumbor)
![Crates.io](https://img.shields.io/crates/d/thumbor)

## Usage

```rust
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pub mod error;
pub mod geometry;
mod server;
mod settings;
pub mod settings;

#[cfg(test)]
mod tests;

pub use server::Server;
pub use settings::{filter::Filter, Settings};
pub use settings::{filter::Filter, SettingsBuilder};

0 comments on commit 08282ad

Please sign in to comment.