forked from chowdhurya/rust-unidecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 977 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (32 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "fast_unidecode"
version = "1.0.3-post1"
edition = "2024"
authors = ["Daniel Stancl <daniel.stancl@gmail.com>", "Amit Chowdhury <amitc97@gmail.com>"]
description = "Provides pure ASCII transliterations of Unicode strings."
homepage = "https://github.com/stancld/rust-unidecode/"
repository = "https://github.com/stancld/rust-unidecode/"
readme = "README.md"
keywords = [
"unidecode",
"unidecoder",
"Unicode",
"ASCII",
"transliteration"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.htmlAdd commentMore actions
[lib]
name = "fast_unidecode"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.25.1"
features = ["extension-module"]