File: Cargo.toml

package info (click to toggle)
python-cramjam 2.7.0.1%2Bds1-2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 3,048 kB
  • sloc: python: 622; makefile: 41
file content (23 lines) | stat: -rw-r--r-- 687 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "cramjam-python"
version = "2.7.0"
authors = ["Miles Granger <miles59923@gmail.com>"]
edition = "2021"
license = "MIT"
description = "Thin Python bindings to de/compression algorithms in Rust"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "cramjam"
crate-type = ["cdylib"]

[features]
default = ["extension-module"]
extension-module = ["pyo3/extension-module"]


[dependencies]
# Python 3.12 support not officially released yet
pyo3 = { git = "https://github.com/PyO3/pyo3.git", rev="90cc69b", default-features = false, features = ["macros"] }
libcramjam = { path = "../libcramjam" }