Skip to content

Commit

Permalink
Remove support of non-stable Rust.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Oct 1, 2023
1 parent 529cb8f commit f659d94
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
strategy:
matrix:
rust:
- 1.60.0
- stable
steps:
- name: Checkout
Expand Down
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name = "tiny-skia"
version = "0.11.1"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
edition = "2018"
rust-version = "1.60"
description = "A tiny Skia subset ported to Rust."
documentation = "https://docs.rs/tiny-skia/"
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
![Build Status](https://github.com/RazrFalcon/tiny-skia/workflows/Rust/badge.svg)
[![Crates.io](https://img.shields.io/crates/v/tiny-skia.svg)](https://crates.io/crates/tiny-skia)
[![Documentation](https://docs.rs/tiny-skia/badge.svg)](https://docs.rs/tiny-skia)
[![Rust 1.60+](https://img.shields.io/badge/rust-1.60+-orange.svg)](https://www.rust-lang.org)

`tiny-skia` is a tiny [Skia] subset ported to Rust.

Expand All @@ -17,6 +16,8 @@ The main missing feature is text rendering

**Note:** this is not a Skia replacement and never will be. It's more of a research project.

MSRV: stable

## Motivation

The main motivation behind this library is to have a small, high-quality 2D rendering
Expand Down
1 change: 0 additions & 1 deletion path/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name = "tiny-skia-path"
version = "0.11.1"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
edition = "2018"
rust-version = "1.51"
description = "A tiny-skia Bezier path implementation"
documentation = "https://docs.rs/tiny-skia-path/"
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion path/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
![Build Status](https://github.com/RazrFalcon/tiny-skia/workflows/Rust/badge.svg)
[![Crates.io](https://img.shields.io/crates/v/tiny-skia-path.svg)](https://crates.io/crates/tiny-skia-path)
[![Documentation](https://docs.rs/tiny-skia-path/badge.svg)](https://docs.rs/tiny-skia-path)
[![Rust 1.51+](https://img.shields.io/badge/rust-1.51+-orange.svg)](https://www.rust-lang.org)

A [tiny-skia](https://github.com/RazrFalcon/tiny-skia) Bezier path implementation.

Expand All @@ -12,6 +11,8 @@ Also provides some basic geometry types, but they will be moved to an external c

Note that all types use single precision floats (`f32`), just like [Skia](https://skia.org/).

MSRV: stable

## License

The same as used by [Skia](https://skia.org/): [New BSD License](./LICENSE)

0 comments on commit f659d94

Please sign in to comment.