forked from chowdhurya/rust-unidecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (32 loc) · 928 Bytes
/
Cargo.toml
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 = "0.1.0"
edition = "2021"
authors = ["Daniel Stancl <daniek.stancl@gmail.com>", "Amit Chowdhury <amitc97@gmail.com>"]
description = "Provides pure ASCII transliterations of Unicode strings."
repository = "https://github.com/stancld/rust-unidecode/"
readme = "README.md"
keywords = [
"unidecode",
"unidecoder",
"Unicode",
"ASCII",
"transliteration"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
license = "BSD-3-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "fast_unidecode"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.16.5"
features = ["extension-module"]