-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 749 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
[workspace]
members = ["bluefin", "bluefin-io", "bluefin-proto"]
resolver = "2"
[workspace.package]
version = "0.1.6"
edition = "2021"
description = "An experimental, secure, P2P, transport-layer protocol."
license = "MIT"
repository = "https://github.com/franklee26/bluefin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
local-ip-address = "0.6.3"
rand = "0.9.0-beta.1"
rstest = "0.26.1"
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["full", "tracing"] }
console-subscriber = "0.5.0"
libc = "0.2.164"
socket2 = { version = "0.6.1", features = ["all"] }
[workspace.lints.rust]
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"
debug = true