/ duper-python / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "duper-python"
 3  description = "The format that's super!"
 4  version = "0.4.3"
 5  edition = "2024"
 6  rust-version.workspace = true
 7  license = "MIT"
 8  authors = ["Eric Rodrigues Pires <eric@eric.dev.br>"]
 9  repository = "https://github.com/EpicEric/duper"
10  homepage = "https://duper.dev.br"
11  readme = "README.md"
12  categories = ["encoding", "parser-implementations"]
13  keywords = ["duper", "serialization", "python"]
14  publish = false
15  
16  [lib]
17  name = "_duper"
18  crate-type = ["cdylib"]
19  
20  [dependencies]
21  duper = { workspace = true, features = ["ansi", "serde"] }
22  pyo3 = { version = "0.27.1", features = [
23    "extension-module",
24    "generate-import-lib",
25  ] }