-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 859 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 859 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
26
27
28
29
30
31
32
33
34
[package]
name = "gir"
version = "0.0.1"
authors = [
"Evgenii Pashkin <eapashkin@gmail.com>",
"Gleb Kozyrev <gleb@gkoz.com>",
"Guillaume Gomez <guillaume1.gomez@gmail.com>",
]
build = "build.rs"
exclude = ["Gir*.toml", "tests/**/*", "*.md", "generator.py"]
edition = "2024"
[dependencies]
bitflags = "2.10"
getopts = "0.2.24"
getter_rules = { package = "fix-getters-rules", version = "0.3.0", default-features = false }
toml = { version = "0.9" , features = ["preserve_order"] }
env_logger = { version = "0.11", default-features = false }
log = "0.4"
regex = "1.12"
hprof = "0.1"
rustdoc-stripper = "0.1.19"
gir-parser = { git = "https://github.com/bilelmoussaoui/gir-parser.git", rev = "946d79b9d220e3c68692f3b590986a15fcca7139" }
[profile.release]
codegen-units = 4
[[bin]]
name = "gir"
path = "src/main.rs"
[lib]
name = "libgir"
path = "src/lib.rs"