blob: ec4f795b40388b7e69ce451479f60ebcaf189415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "talpid-net"
description = "Networking helpers"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[target.'cfg(unix)'.dependencies]
libc = "0.2"
talpid-types = { path = "../talpid-types" }
socket2 = { workspace = true, features = ["all"] }
log = { workspace = true }
thiserror = { workspace = true }
nix = { workspace = true, features = ["net"] }
|