2021-06-28 19:43:03 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_net"
|
2021-09-21 16:53:47 -04:00
|
|
|
version = "0.10.0"
|
2021-06-28 19:43:03 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 10:19:27 -04:00
|
|
|
edition = "2018"
|
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]
|
2021-09-21 16:53:47 -04:00
|
|
|
deno_core = { version = "0.100.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.5.0", path = "../tls" }
|
2021-08-02 10:19:27 -04:00
|
|
|
log = "0.4.14"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-06-28 19:43:03 -04:00
|
|
|
trust-dns-proto = "0.20.3"
|
|
|
|
trust-dns-resolver = { version = "0.20.3", features = ["tokio-runtime", "serde-config"] }
|