forked from gtk-rs/gir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 709 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 709 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"]
edition = "2018"
[dependencies]
bitflags = "1.0"
getopts = "0.2.21"
xml-rs = "0.8"
toml = { version = "0.5" , features = ["preserve_order"] }
env_logger = { version = "0.7", default-features = false }
once_cell = "1.0"
log = "0.4"
regex = "1.0"
hprof = "0.1"
rustdoc-stripper = { git = "https://github.com/GuillaumeGomez/rustdoc-stripper" }
[profile.release]
codegen-units = 4
[[bin]]
name = "gir"
path = "src/main.rs"
[lib]
name = "libgir"
path = "src/lib.rs"