Skip to content

Commit

Permalink
fix: rename differ crate to typediff
Browse files Browse the repository at this point in the history
  • Loading branch information
neoncitylights committed Jul 14, 2023
1 parent 849a4ce commit 6300bb2
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# differ.rs
# typediff

Differ.rs is a collection of natural langauge processing crates, all written in Rust.
Typediff is a collection of natural langauge processing crates, all written in Rust.

# *Brief overview*
### Crates
- [x] [`differ`](./crates/differ): Provides edit distance, delta vectors between 2 words, and word transformation
- [x] [`typediff`](./crates/typediff): Provides edit distance, delta vectors between 2 words, and word transformation

## License
Licensed under either of
Expand Down
4 changes: 2 additions & 2 deletions crates/differ/Cargo.toml → crates/typediff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "differ-rs"
name = "typediff"
version = "0.0.0"
authors = [
"Samantha Nguyen, <[email protected]>",
"Alfredo Gutierrez <[email protected]>"
]
description = "Provides edit distance, delta vectors between 2 words, and word transformation"
repository = "https://github.com/nlp-rs/differ.rs.git"
repository = "https://github.com/nlp-rs/typediff.git"
readme = "README.md"
keywords = ["nlp", "Edit-distance", "HammingDistance", "LevenshteinDistance"]
categories = ["data-structures", "algorithms", "text-processing", "text-editors"]
Expand Down
8 changes: 4 additions & 4 deletions crates/differ/README.md → crates/typediff/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Differ.rs
# typediff
[![License](https://img.shields.io/badge/license-MIT%20%26%20Apache%202.0-green)](#license)
[![CI](https://github.com/nlp-rs/differ.rs/actions/workflows/main.yml/badge.svg)](https://github.com/nlp-rs/differ.rs/actions/workflows/main.yml)
[![Security audit](https://github.com/nlp-rs/differ.rs/actions/workflows/security-audit.yml/badge.svg)](https://github.com/nlp-rs/differ.rs/actions/workflows/security-audit.yml)
> warning: **Differ.rs is currently experimental**
[![CI](https://github.com/nlp-rs/typediff/actions/workflows/main.yml/badge.svg)](https://github.com/nlp-rs/typediff/actions/workflows/main.yml)
[![Security audit](https://github.com/nlp-rs/typediff/actions/workflows/security-audit.yml/badge.svg)](https://github.com/nlp-rs/typediff/actions/workflows/security-audit.yml)
> warning: **typediff is currently experimental**
This crate provides edit distance, deltas between 2 words, lets you apply deltas in order to transform words, and lets you get the similarity and difference between two words.

## Install
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6300bb2

Please sign in to comment.