
Closes #19892 This PR builds on top of #20587 and improves upon it. Release Notes: - N/A --------- Co-authored-by: Kirill Bulatov <kirill@zed.dev>
25 lines
423 B
TOML
25 lines
423 B
TOML
[package]
|
|
name = "net"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/net.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
smol.workspace = true
|
|
workspace-hack.workspace = true
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
anyhow.workspace = true
|
|
async-io = "2.4"
|
|
windows.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|