114177e7d8
* Improve performance of difflib, primarily by avoiding heap allocations. * Add doc comment to real_quick_ratio.
24 lines
500 B
TOML
24 lines
500 B
TOML
[package]
|
|
name = "difflib"
|
|
version = "0.4.0"
|
|
authors = ["Dima Kudosh <dimakudosh@gmail.com>"]
|
|
description = "Port of Python's difflib library to Rust."
|
|
documentation = "https://github.com/DimaKudosh/difflib/wiki"
|
|
homepage = "https://github.com/DimaKudosh/difflib"
|
|
repository = "https://github.com/DimaKudosh/difflib"
|
|
keywords = ["difflib", "text", "diff"]
|
|
license = "MIT"
|
|
include = [
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
edition = "2021"
|
|
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
|
|
[dependencies]
|
|
rustc-hash = "1.1.0"
|
|
|