-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.13 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
[package]
name = "streamson-python"
version = "4.0.0"
authors = ["Stepan Henek"]
edition = "2018"
description = "Python wrappers around streamson"
license = "MIT"
readme = "README.md"
keywords = ["json", "python", "splitter"]
repository = "https://github.com/shenek/python-streamson"
categories = ["parsing"]
[package.metadata.maturin.scripts]
streamson = "streamson:__main__.main"
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Programming Language :: Rust",
]
[lib]
name = "streamson"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "~0.13.2", features = ["extension-module"] }
streamson-lib = { version = "~7.0.1", features = ["with_regex"] }