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[package]
name = "procmaps"
version = "0.6.5"
authors = ["William Woodruff <william@yossarian.net>"]
edition = "2018"
description = "Python bindings for procmaps.rs"
homepage = "https://github.com/woodruffw/procmaps.py"
repository = "https://github.com/woodruffw/procmaps.py"
readme = "README.md"
license = "MIT"
[package.metadata.release]
publish = false # handled by GitHub Actions
push = true
[lib]
crate-type = ["cdylib"]
[dependencies]
libc = "0.2"
pyo3 = { version = "0.27", features = [
"extension-module",
"abi3",
"abi3-py38",
] }
rsprocmaps = "0.3"