-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 672 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 672 Bytes
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
[package]
name = "cpp-linter-py"
readme = "README.md"
repository = "https://github.com/cpp-linter/cpp-linter-rs/tree/main/bindings/python"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "cpp_linter"
crate-type = ["cdylib"]
bench = false
[dependencies]
pyo3 = { version = "0.28.2", features = ["extension-module", "abi3-py39"] }
cpp-linter = { path = "../../cpp-linter" }
tokio = "1.49.0"
[features]
openssl-vendored = ["cpp-linter/openssl-vendored"]