-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (29 loc) · 922 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
[workspace]
resolver = "2"
members = [
"grpc-server",
"pyo3",
"rust",
"tools/counters",
"tools/topology",
]
[workspace.package]
repository = "https://gitlab.softwareheritage.org/swh/devel/swh-graph"
license = "GPL-3.0-or-later"
version = "6.7.0"
[workspace.dependencies]
anyhow = { version="1.0.79", features=["backtrace"] }
itertools = { version = "0.11.0" }
swh-graph = { version = "6.1.0", path = "./rust/" }
# CLI
env_logger = "0.11.5"
clap = { version = "4.1.6", features = ["derive"] }
dsi-progress-logger = "0.2.4"
log = "0.4.17"
[profile.release] # Used for the examples
opt-level = 3 # like --release
lto = "fat" # Full LTO
overflow-checks = false # Disable integer overflow checks.
debug = true # Include debug info.
debug-assertions = false # Disables debug assertions.
codegen-units=1 # slower compile times, but maybe better perf