-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (37 loc) · 1.06 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
[package]
name = "pyperscan"
authors.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
[lib]
name = "pyperscan"
crate-type = ["cdylib"]
[dependencies]
bitflags = "1.3.2"
foreign-types = "0.5.0"
pyo3 = { version = "0.18.1", features = ["extension-module", "abi3-py38"] }
thiserror = "1.0.37"
hyperscan-sys = { path = "./hyperscan-sys" }
libc = "0.2.142"
[features]
hyperscan = ["hyperscan-sys/hyperscan"]
vectorscan = ["hyperscan-sys/vectorscan"]
[workspace]
resolver = "2"
members = [".", "hyperscan-sys"]
[workspace.package]
version = "0.3.0"
authors = ["László Vaskó <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.64"
description = "An opinionated Python binding for Hyperscan focusing on easy of use and safety."
repository = "https://github.com/vlaci/pyperscan"
homepage = "https://github.com/vlaci/pyperscan"
readme = "README.md"