Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ types:
- chore
- revert

targetUrl: https://github.com/fast/visitor/blob/main/.github/semantic.yml
targetUrl: https://github.com/fast/traversable/blob/main/.github/semantic.yml
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ resolver = "2"

[workspace.package]
edition = "2024"
homepage = "https://github.com/fast/visitor"
homepage = "https://github.com/fast/traversable"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/fast/visitor"
repository = "https://github.com/fast/traversable"
rust-version = "1.85.0"

[workspace.dependencies]
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Visitor Pattern in Rust
# Visitor Pattern over Traversable Data Structures in Rust

[![Crates.io][crates-badge]][crates-url]
[![Documentation][docs-badge]][docs-url]
[![MSRV 1.85][msrv-badge]](https://www.whatrustisit.com)
[![Apache 2.0 licensed][license-badge]][license-url]
[![Build Status][actions-badge]][actions-url]

[crates-badge]: https://img.shields.io/crates/v/visitor.svg
[crates-url]: https://crates.io/crates/visitor
[docs-badge]: https://docs.rs/visitor/badge.svg
[crates-badge]: https://img.shields.io/crates/v/traversable.svg
[crates-url]: https://crates.io/crates/traversable
[docs-badge]: https://docs.rs/traversable/badge.svg
[msrv-badge]: https://img.shields.io/badge/MSRV-1.85-green?logo=rust
[docs-url]: https://docs.rs/visitor
[license-badge]: https://img.shields.io/crates/l/visitor
[docs-url]: https://docs.rs/traversable
[license-badge]: https://img.shields.io/crates/l/traversable
[license-url]: LICENSE
[actions-badge]: https://github.com/fast/visitor/workflows/CI/badge.svg
[actions-url]:https://github.com/fast/visitor/actions?query=workflow%3ACI
[actions-badge]: https://github.com/fast/traversable/workflows/CI/badge.svg
[actions-url]:https://github.com/fast/traversable/actions?query=workflow%3ACI

## Overview

Expand All @@ -24,7 +24,7 @@ This crate provides traits and proc macros to implement the visitor pattern for

This crate is built against the latest stable release, and its minimum supported rustc version is 1.85.0.

The policy is that the minimum Rust version required to use this crate can be increased in minor version updates. For example, if Visitor 1.0 requires Rust 1.60.0, then Visitor 1.0.z for all values of z will also require Rust 1.60.0 or newer. However, Visitor 1.y for y > 0 may require a newer minimum version of Rust.
The policy is that the minimum Rust version required to use this crate can be increased in minor version updates. For example, if Traversable 1.0 requires Rust 1.60.0, then Traversable 1.0.z for all values of z will also require Rust 1.60.0 or newer. However, Traversable 1.y for y > 0 may require a newer minimum version of Rust.

## License

Expand Down
Loading