Skip to content

Commit 6ce5c68

Browse files
committed
rename repo
1 parent e97e2d2 commit 6ce5c68

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
2-
name = "fast-lcs"
3-
version = "0.1.0"
2+
name = "offline-lcs"
3+
version = "0.1.1"
44
edition = "2024"
55
license = "MIT"
66
readme = "README.md"
77
repository = "https://github.com/reflex-dev/lcs"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010
[lib]
11-
name = "fast_lcs"
11+
name = "offline_lcs"
1212
crate-type = ["cdylib"]
1313

1414
[dependencies]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# fast-lcs
1+
# offline-lcs
22

33
```python
4-
from fast_lcs import compute_lcs_similarity
4+
from offline_lcs import compute_lcs_similarity
55

66
compute_lcs_similarity(source="bab", target="abacaba", length_of_prefixes_of_target=[3, 4])
77
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["maturin>=1.11,<2.0"]
33
build-backend = "maturin"
44

55
[project]
6-
name = "fast-lcs"
6+
name = "offline-lcs"
77
description = "A fast implementation of the longest common subsequence."
88
requires-python = ">=3.13"
99
classifiers = [

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fn compute_lcs_similarity(
5050
}
5151

5252
#[pymodule(gil_used = false)]
53-
fn fast_lcs(m: &Bound<'_, PyModule>) -> PyResult<()> {
53+
fn offline_lcs(m: &Bound<'_, PyModule>) -> PyResult<()> {
5454
m.add_function(wrap_pyfunction!(compute_lcs_similarity, m)?)?;
5555
Ok(())
5656
}

0 commit comments

Comments
 (0)