-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 949 Bytes
/
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
[workspace]
resolver = "2"
members = [".", "tests"]
default-members = [".", "tests"]
[workspace.dependencies]
bindgen = ">=0.70.0"
convert_case = "0.6.0"
insta = "1.41.1"
regex = "1.11.1"
[package]
name = "bindgen_helpers"
version = "0.3.0"
description = "Utilities to rename, change case, and fix Rust code generated by bindgen from C headers"
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
repository = "https://github.com/nyurik/bindgen_helpers"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["ffi", "bindgen", "rename", "case", "convert"]
categories = ["development-tools::ffi", "development-tools::build-utils"]
rust-version = "1.71.0"
[dependencies]
bindgen.workspace = true
convert_case.workspace = true
regex.workspace = true
[dev-dependencies]
insta.workspace = true
[workspace.lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }