summaryrefslogtreecommitdiff
path: root/ext/net/Cargo.toml
blob: f278f69c1950af54c2553b852ead7c5d3385335c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.

[package]
name = "deno_net"
version = "0.64.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "Networking for Deno"

[lib]
path = "lib.rs"

[dependencies]
deno_core = { version = "0.154.0", path = "../../core" }
deno_tls = { version = "0.59.0", path = "../tls" }
log = "0.4.16"
serde = { version = "1.0.136", features = ["derive"] }
socket2 = "0.4.4"
tokio = { version = "1.21", features = ["full"] }
trust-dns-proto = "0.22"
trust-dns-resolver = { version = "0.22", features = ["tokio-runtime", "serde-config"] }