-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 786 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
35
36
37
38
[package]
name = "PyDeduplines"
version = "0.6.1"
authors = ["Gal Ben David <gal@intsights.com>"]
edition = "2021"
description = "Python library for a duplicate lines removal written in Rust"
readme = "README.md"
repository = "https://github.com/intsights/PyDeduplines"
homepage = "https://github.com/intsights/PyDeduplines"
license = "MIT"
keywords = [
"unique",
"lines",
"rust",
"pyo3",
]
[package.metadata.maturin]
[lib]
name = "pydeduplines"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.15.1"
features = ["extension-module"]
[dependencies]
ahash = "0.7"
bytecount = {version = "0.6", features = ["runtime-dispatch-simd"]}
crossbeam-deque = "0.8"
crossbeam-utils = "0.8"
memchr = "2"
parking_lot = "0.12"
[profile.release]
lto = true
panic = "abort"