-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "lzallright"
authors.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
include = [
"/pyproject.toml",
"/pdm.lock",
"/README.md",
"/LICENSE",
"/benches",
"/rust-toolchain.toml",
"/src",
"/lzallright.pyi",
"/tests/*.py",
"!__pycache__",
"!*.so",
]
[lib]
crate-type = [
"cdylib",
"rlib"
]
[dependencies]
cxx = "1.0.94"
lzokay-sys = { path = "./lzokay-sys" }
pyo3 = "0.23.0"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "compress"
harness = false
[workspace]
resolver = "2"
members = [".", "lzokay-sys"]
[workspace.package]
version = "0.2.5"
authors = ["László Vaskó <[email protected]>"]
license = "MIT"
edition = "2021"
rust-version = "1.64"
description = "A Python 3.8+ binding for LZ👌(lzokay) library"
repository = "https://github.com/vlaci/lzallright"
homepage = "https://github.com/vlaci/lzallright"
readme = "README.md"