-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (26 loc) · 992 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
[package]
name = "zung"
version = "0.4.0"
edition = "2021"
authors = ["Ishaan Goel <[email protected]>"]
description = "A monolith of rust projects"
license = "MIT"
repository = "https://github.com/ishaan26/zung"
readme = "README.md"
keywords = ["projects", "learning", "monolith"]
[workspace]
members = ["zung_mini", "zung_parsers", "zung_torrent"]
resolver = "2"
[dependencies]
zung_mini = { version = "0.4.0", path = "./zung_mini" }
zung_parsers = { version = "0.1.1", path = "./zung_parsers" }
zung_torrent = { version = "0.1.0", path = "./zung_torrent" }
anyhow = "1.0.94"
anstyle = "1.0.10"
clap = { version = "4.5.23", features = ["derive"] }
tokio = "1.42.0"
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # LTO instructs the linker to optimize at the link stage.
codegen-units = 1 # to allow for maximum size reduction optimizations
panic = "abort" # rustc can be instructed to abort immediately rather than unwind.