-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (27 loc) · 882 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
[package]
name = "lightrdf"
version = "0.4.0"
authors = ["Kentaro Ozeki <[email protected]>"]
description = "A fast and lightweight Python RDF parser which wraps bindings to Rust's Rio using PyO3"
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/ozekik/lightrdf"
repository = "https://github.com/ozekik/lightrdf"
readme = "README.md"
[lib]
name = "lightrdf"
crate-type = ["cdylib"]
[dependencies]
oxiri = "0.2.2"
pyo3-file = "0.7.0"
rio_api = "0.8.4"
rio_turtle = "0.8.4"
rio_xml = "0.8.4"
signal-hook = "0.3.17"
pyo3 = "0.19.2"
regex = "1"
lazy_static = "1"
itertools = "0.11.0"
[features]
# https://github.com/PyO3/pyo3/blob/c6abf24cca6a74a59d9a88715944f56313e1de21/guide/src/faq.md#i-cant-run-cargo-test-im-having-linker-issues-like-symbol-not-found-or-undefined-reference-to-_pyexc_systemerror
default = ["pyo3/extension-module"]