2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-06-28 19:43:03 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_net"
|
2022-10-17 17:11:16 -04:00
|
|
|
version = "0.65.0"
|
2021-06-28 19:43:03 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-06-28 19:43:03 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Networking for Deno"
|
2021-06-28 19:43:03 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-17 17:11:16 -04:00
|
|
|
deno_core = { version = "0.155.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.60.0", path = "../tls" }
|
2022-05-05 06:41:59 -04:00
|
|
|
log = "0.4.16"
|
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
|
|
socket2 = "0.4.4"
|
2022-09-16 19:11:30 -04:00
|
|
|
tokio = { version = "1.21", features = ["full"] }
|
|
|
|
trust-dns-proto = "0.22"
|
|
|
|
trust-dns-resolver = { version = "0.22", features = ["tokio-runtime", "serde-config"] }
|