-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (43 loc) · 1.2 KB
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
38
39
40
41
42
43
44
45
46
[package]
name = "include-graph"
version = "1.2.2"
edition = "2021"
authors = ["Andrei Litvin"]
description = "Generates dot graph descriptions of c/c++ include dependencies."
repository = "https://github.com/andy31415/igraph"
readme = "README.md"
keywords = ["cli", "graph"]
license-file = "LICENSE"
[lib]
path="src/lib.rs"
crate-type = ["lib"]
[dependencies]
thiserror = "1"
tracing = { version = "0.1"}
shlex = { version = "1.3.0"}
serde = { version = "1.0.197", features = ["derive", "alloc"]}
serde_json = { version = "1.0.114", features = ["alloc"]}
regex = { version = "1.10.3", features = ["use_std"]}
clap = { version = "4.5.1", features = ["derive", "env", "unicode" ]}
tracing-subscriber = { version = "0.3.18", features = [
"json",
"matchers",
"time",
"tracing",
"env-filter",
"regex",
]}
glob = "0.3.1"
nom = "7.1.3"
nom-supreme = "0.8.0"
uuid = { version = "1.7.0", features = ["v6", "std", "rng"] }
camino = "1.1.6"
tera = "1.19.1"
eyre = "0.6.12"
color-eyre = "0.6.2"
# Add a profile to all targets that enables release optimisations, but
# retains debug symbols. This is great for use with
# benchmarking/profiling tools.
[profile.release-with-debug]
inherits = "release"
debug = true