mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
chore: update deps (#14416)
This commit is contained in:
parent
e04f1f1f34
commit
242273e69b
21 changed files with 577 additions and 534 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -236,7 +236,7 @@ jobs:
|
||||||
~/.cargo/registry/index
|
~/.cargo/registry/index
|
||||||
~/.cargo/registry/cache
|
~/.cargo/registry/cache
|
||||||
~/.cargo/git/db
|
~/.cargo/git/db
|
||||||
key: 1-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
|
key: 11-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
|
||||||
|
|
||||||
# In main branch, always creates fresh cache
|
# In main branch, always creates fresh cache
|
||||||
- name: Cache build output (main)
|
- name: Cache build output (main)
|
||||||
|
@ -252,7 +252,7 @@ jobs:
|
||||||
!./target/*/*.zip
|
!./target/*/*.zip
|
||||||
!./target/*/*.tar.gz
|
!./target/*/*.tar.gz
|
||||||
key: |
|
key: |
|
||||||
1-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
|
11-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
|
||||||
|
|
||||||
# Restore cache from the latest 'main' branch build.
|
# Restore cache from the latest 'main' branch build.
|
||||||
- name: Cache build output (PR)
|
- name: Cache build output (PR)
|
||||||
|
@ -268,7 +268,7 @@ jobs:
|
||||||
!./target/*/*.tar.gz
|
!./target/*/*.tar.gz
|
||||||
key: never_saved
|
key: never_saved
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
1-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
|
11-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
|
||||||
|
|
||||||
# Don't save cache after building PRs or branches other than 'main'.
|
# Don't save cache after building PRs or branches other than 'main'.
|
||||||
- name: Skip save cache (PR)
|
- name: Skip save cache (PR)
|
||||||
|
|
941
Cargo.lock
generated
941
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -38,11 +38,11 @@ deno_websocket = { version = "0.55.0", path = "../ext/websocket" }
|
||||||
deno_webstorage = { version = "0.45.0", path = "../ext/webstorage" }
|
deno_webstorage = { version = "0.45.0", path = "../ext/webstorage" }
|
||||||
regex = "=1.5.5"
|
regex = "=1.5.5"
|
||||||
serde = { version = "=1.0.136", features = ["derive"] }
|
serde = { version = "=1.0.136", features = ["derive"] }
|
||||||
zstd = '=0.9.2'
|
zstd = '=0.11.1'
|
||||||
|
|
||||||
[target.'cfg(windows)'.build-dependencies]
|
[target.'cfg(windows)'.build-dependencies]
|
||||||
winapi = "=0.3.9"
|
winapi = "=0.3.9"
|
||||||
winres = "=0.1.11"
|
winres = "=0.1.12"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_ast = { version = "0.14.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
|
deno_ast = { version = "0.14.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
|
||||||
|
@ -57,49 +57,49 @@ atty = "=0.2.14"
|
||||||
base64 = "=0.13.0"
|
base64 = "=0.13.0"
|
||||||
cache_control = "=0.2.0"
|
cache_control = "=0.2.0"
|
||||||
chrono = "=0.4.19"
|
chrono = "=0.4.19"
|
||||||
clap = "=3.1.6"
|
clap = "=3.1.12"
|
||||||
clap_complete = "=3.1.1"
|
clap_complete = "=3.1.2"
|
||||||
clap_complete_fig = "=3.1.4"
|
clap_complete_fig = "=3.1.5"
|
||||||
data-url = "=0.1.1"
|
data-url = "=0.1.1"
|
||||||
dissimilar = "=1.0.2"
|
dissimilar = "=1.0.3"
|
||||||
dprint-plugin-json = "=0.15.2"
|
dprint-plugin-json = "=0.15.2"
|
||||||
dprint-plugin-markdown = "=0.13.2"
|
dprint-plugin-markdown = "=0.13.2"
|
||||||
dprint-plugin-typescript = "=0.68.2"
|
dprint-plugin-typescript = "=0.68.2"
|
||||||
encoding_rs = "=0.8.29"
|
encoding_rs = "=0.8.31"
|
||||||
env_logger = "=0.8.4"
|
env_logger = "=0.9.0"
|
||||||
eszip = "=0.19.0"
|
eszip = "=0.19.0"
|
||||||
fancy-regex = "=0.7.1"
|
fancy-regex = "=0.9.0"
|
||||||
http = "=0.2.4"
|
http = "=0.2.6"
|
||||||
import_map = "=0.9.0"
|
import_map = "=0.9.0"
|
||||||
jsonc-parser = { version = "=0.19.0", features = ["serde"] }
|
jsonc-parser = { version = "=0.19.0", features = ["serde"] }
|
||||||
libc = "=0.2.121"
|
libc = "=0.2.124"
|
||||||
log = { version = "=0.4.14", features = ["serde"] }
|
log = { version = "=0.4.16", features = ["serde"] }
|
||||||
mitata = '=0.0.6'
|
mitata = '=0.0.6'
|
||||||
node_resolver = "=0.1.1"
|
node_resolver = "=0.1.1"
|
||||||
notify = "=5.0.0-pre.14"
|
notify = "=5.0.0-pre.14"
|
||||||
once_cell = "=1.10.0"
|
once_cell = "=1.10.0"
|
||||||
os_pipe = "=1.0.1"
|
os_pipe = "=1.0.1"
|
||||||
percent-encoding = "=2.1.0"
|
percent-encoding = "=2.1.0"
|
||||||
pin-project = "=1.0.8"
|
pin-project = "=1.0.10"
|
||||||
rand = { version = "=0.8.4", features = ["small_rng"] }
|
rand = { version = "=0.8.5", features = ["small_rng"] }
|
||||||
regex = "=1.5.5"
|
regex = "=1.5.5"
|
||||||
ring = "=0.16.20"
|
ring = "=0.16.20"
|
||||||
rustyline = { version = "=9.1.2", default-features = false }
|
rustyline = { version = "=9.1.2", default-features = false }
|
||||||
rustyline-derive = "=0.6.0"
|
rustyline-derive = "=0.6.0"
|
||||||
secure_tempfile = { version = "=3.2.0", package = "tempfile" } # different name to discourage use in tests
|
secure_tempfile = { version = "=3.3.0", package = "tempfile" } # different name to discourage use in tests
|
||||||
semver-parser = "=0.10.2"
|
semver-parser = "=0.10.2"
|
||||||
serde = { version = "=1.0.136", features = ["derive"] }
|
serde = { version = "=1.0.136", features = ["derive"] }
|
||||||
shell-escape = "=0.1.5"
|
shell-escape = "=0.1.5"
|
||||||
text-size = "=1.1.0"
|
text-size = "=1.1.0"
|
||||||
text_lines = "=0.4.1"
|
text_lines = "=0.4.1"
|
||||||
tokio = { version = "=1.17", features = ["full"] }
|
tokio = { version = "=1.17", features = ["full"] }
|
||||||
tokio-util = "=0.7.0"
|
tokio-util = "=0.7.1"
|
||||||
tower-lsp = "=0.16.0"
|
tower-lsp = "=0.17.0"
|
||||||
twox-hash = "=1.6.2"
|
twox-hash = "=1.6.2"
|
||||||
typed-arena = "2.0.1"
|
typed-arena = "2.0.1"
|
||||||
uuid = { version = "=0.8.2", features = ["v4", "serde"] }
|
uuid = { version = "=1.0.0", features = ["v4", "serde"] }
|
||||||
walkdir = "=2.3.2"
|
walkdir = "=2.3.2"
|
||||||
zstd = '=0.9.2'
|
zstd = '=0.11.1'
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
fwdansi = "=1.1.0"
|
fwdansi = "=1.1.0"
|
||||||
|
@ -109,10 +109,10 @@ winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase",
|
||||||
deno_bench_util = { version = "0.44.0", path = "../bench_util" }
|
deno_bench_util = { version = "0.44.0", path = "../bench_util" }
|
||||||
flaky_test = "=0.1.0"
|
flaky_test = "=0.1.0"
|
||||||
os_pipe = "=1.0.1"
|
os_pipe = "=1.0.1"
|
||||||
pretty_assertions = "=1.2.0"
|
pretty_assertions = "=1.2.1"
|
||||||
test_util = { path = "../test_util" }
|
test_util = { path = "../test_util" }
|
||||||
trust-dns-client = "0.21.2"
|
trust-dns-client = "=0.21.2"
|
||||||
trust-dns-server = "0.21.2"
|
trust-dns-server = "=0.21.2"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dev-dependencies]
|
[target.'cfg(unix)'.dev-dependencies]
|
||||||
nix = "=0.23.0"
|
nix = "=0.23.0"
|
||||||
|
|
|
@ -52,7 +52,7 @@ fn create_snapshot(
|
||||||
);
|
);
|
||||||
|
|
||||||
vec.extend_from_slice(
|
vec.extend_from_slice(
|
||||||
&zstd::block::compress(snapshot_slice, 22)
|
&zstd::bulk::compress(snapshot_slice, 22)
|
||||||
.expect("snapshot compression failed"),
|
.expect("snapshot compression failed"),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ pub static COMPILER_SNAPSHOT: Lazy<Box<[u8]>> = Lazy::new(
|
||||||
static COMPRESSED_COMPILER_SNAPSHOT: &[u8] =
|
static COMPRESSED_COMPILER_SNAPSHOT: &[u8] =
|
||||||
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.bin"));
|
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.bin"));
|
||||||
|
|
||||||
zstd::block::decompress(
|
zstd::bulk::decompress(
|
||||||
&COMPRESSED_COMPILER_SNAPSHOT[4..],
|
&COMPRESSED_COMPILER_SNAPSHOT[4..],
|
||||||
u32::from_le_bytes(COMPRESSED_COMPILER_SNAPSHOT[0..4].try_into().unwrap())
|
u32::from_le_bytes(COMPRESSED_COMPILER_SNAPSHOT[0..4].try_into().unwrap())
|
||||||
as usize,
|
as usize,
|
||||||
|
|
|
@ -13,17 +13,17 @@ description = "A modern JavaScript/TypeScript runtime built with V8, Rust, and T
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.57"
|
||||||
deno_ops = { path = "../ops", version = "0.10.0" }
|
deno_ops = { path = "../ops", version = "0.10.0" }
|
||||||
futures = "0.3.21"
|
futures = "0.3.21"
|
||||||
indexmap = "1.7.0"
|
indexmap = "1.8.1"
|
||||||
libc = "0.2.121"
|
libc = "0.2.124"
|
||||||
log = "0.4.14"
|
log = "0.4.16"
|
||||||
once_cell = "1.10.0"
|
once_cell = "1.10.0"
|
||||||
parking_lot = "0.12.0"
|
parking_lot = "0.12.0"
|
||||||
pin-project = "1.0.7"
|
pin-project = "1.0.10"
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
serde_json = { version = "1.0.66", features = ["preserve_order"] }
|
serde_json = { version = "1.0.79", features = ["preserve_order"] }
|
||||||
serde_v8 = { version = "0.43.0", path = "../serde_v8" }
|
serde_v8 = { version = "0.43.0", path = "../serde_v8" }
|
||||||
sourcemap = "=6.0.1"
|
sourcemap = "=6.0.1"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.2.2", features = ["serde"] }
|
||||||
|
|
|
@ -17,4 +17,4 @@ path = "lib.rs"
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
uuid = { version = "0.8.2", features = ["v4"] }
|
uuid = { version = "1.0.0", features = ["v4"] }
|
||||||
|
|
|
@ -36,4 +36,4 @@ sha-1 = "0.9.7"
|
||||||
sha2 = "0.9.5"
|
sha2 = "0.9.5"
|
||||||
spki = "0.4.1"
|
spki = "0.4.1"
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
uuid = { version = "0.8.2", features = ["v4"] }
|
uuid = { version = "1.0.0", features = ["v4"] }
|
||||||
|
|
|
@ -792,8 +792,8 @@ pub fn op_crypto_random_uuid(state: &mut OpState) -> Result<String, AnyError> {
|
||||||
let mut bytes = [0u8; 16];
|
let mut bytes = [0u8; 16];
|
||||||
seeded_rng.fill(&mut bytes);
|
seeded_rng.fill(&mut bytes);
|
||||||
uuid::Builder::from_bytes(bytes)
|
uuid::Builder::from_bytes(bytes)
|
||||||
.set_version(uuid::Version::Random)
|
.with_version(uuid::Version::Random)
|
||||||
.build()
|
.into_uuid()
|
||||||
} else {
|
} else {
|
||||||
uuid::Uuid::new_v4()
|
uuid::Uuid::new_v4()
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,13 +15,13 @@ path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "1.1.0"
|
bytes = "1.1.0"
|
||||||
data-url = "0.1.0"
|
data-url = "0.1.1"
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
deno_tls = { version = "0.37.0", path = "../tls" }
|
deno_tls = { version = "0.37.0", path = "../tls" }
|
||||||
dyn-clone = "1"
|
dyn-clone = "1"
|
||||||
http = "0.2.4"
|
http = "0.2.6"
|
||||||
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
tokio-stream = "0.1.7"
|
tokio-stream = "0.1.8"
|
||||||
tokio-util = { version = "0.7.0", features = ["io"] }
|
tokio-util = { version = "0.7.1", features = ["io"] }
|
||||||
|
|
|
@ -16,7 +16,7 @@ path = "lib.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
dlopen = "0.1.8"
|
dlopen = "0.1.8"
|
||||||
libffi = "2.0.0"
|
libffi = "3.0.0"
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.129", features = ["derive"] }
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
|
|
||||||
|
|
|
@ -18,23 +18,23 @@ name = "compressible"
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-compression = { version = "0.3.1", features = ["tokio", "brotli", "gzip"] }
|
async-compression = { version = "0.3.12", features = ["tokio", "brotli", "gzip"] }
|
||||||
base64 = "0.13.0"
|
base64 = "0.13.0"
|
||||||
brotli = "3.3.3"
|
brotli = "3.3.4"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
cache_control = "0.2.0"
|
cache_control = "0.2.0"
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
deno_websocket = { version = "0.55.0", path = "../websocket" }
|
deno_websocket = { version = "0.55.0", path = "../websocket" }
|
||||||
flate2 = "1.0.22"
|
flate2 = "1.0.23"
|
||||||
fly-accept-encoding = "0.2.0-alpha.5"
|
fly-accept-encoding = "0.2.0-alpha.5"
|
||||||
hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
|
hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
|
||||||
mime = "0.3.16"
|
mime = "0.3.16"
|
||||||
percent-encoding = "2.1.0"
|
percent-encoding = "2.1.0"
|
||||||
phf = { version = "0.10", features = ["macros"] }
|
phf = { version = "0.10", features = ["macros"] }
|
||||||
ring = "0.16.20"
|
ring = "0.16.20"
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
tokio-util = { version = "0.7.0", features = ["io"] }
|
tokio-util = { version = "0.7.1", features = ["io"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bencher = "0.1"
|
bencher = "0.1"
|
||||||
|
|
|
@ -16,9 +16,9 @@ path = "lib.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
deno_tls = { version = "0.37.0", path = "../tls" }
|
deno_tls = { version = "0.37.0", path = "../tls" }
|
||||||
log = "0.4.14"
|
log = "0.4.16"
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
socket2 = "0.4.2"
|
socket2 = "0.4.4"
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
trust-dns-proto = "=0.21.2"
|
trust-dns-proto = "=0.21.2"
|
||||||
trust-dns-resolver = { version = "=0.21.2", features = ["tokio-runtime", "serde-config"] }
|
trust-dns-resolver = { version = "=0.21.2", features = ["tokio-runtime", "serde-config"] }
|
||||||
|
|
|
@ -17,8 +17,8 @@ path = "lib.rs"
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
once_cell = "1.10.0"
|
once_cell = "1.10.0"
|
||||||
rustls = { version = "0.20", features = ["dangerous_configuration"] }
|
rustls = { version = "0.20", features = ["dangerous_configuration"] }
|
||||||
rustls-native-certs = "0.6.1"
|
rustls-native-certs = "0.6.2"
|
||||||
rustls-pemfile = "0.3"
|
rustls-pemfile = "1.0.0"
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
webpki = "0.22"
|
webpki = "0.22"
|
||||||
webpki-roots = "0.22"
|
webpki-roots = "0.22"
|
||||||
|
|
|
@ -15,7 +15,7 @@ path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
serde_repr = "0.1.7"
|
serde_repr = "0.1.7"
|
||||||
urlpattern = "0.1.6"
|
urlpattern = "0.1.6"
|
||||||
|
|
||||||
|
|
|
@ -17,11 +17,11 @@ path = "lib.rs"
|
||||||
async-trait = "0.1.51"
|
async-trait = "0.1.51"
|
||||||
base64 = "0.13.0"
|
base64 = "0.13.0"
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
encoding_rs = "0.8.29"
|
encoding_rs = "0.8.31"
|
||||||
flate2 = "1"
|
flate2 = "1"
|
||||||
serde = "1.0.129"
|
serde = "1.0.136"
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
uuid = { version = "1.0.0", features = ["v4", "serde"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
deno_bench_util = { version = "0.44.0", path = "../../bench_util" }
|
deno_bench_util = { version = "0.44.0", path = "../../bench_util" }
|
||||||
|
|
|
@ -16,9 +16,9 @@ path = "lib.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
deno_tls = { version = "0.37.0", path = "../tls" }
|
deno_tls = { version = "0.37.0", path = "../tls" }
|
||||||
http = "0.2.4"
|
http = "0.2.6"
|
||||||
hyper = { version = "0.14.12" }
|
hyper = { version = "0.14.18" }
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
tokio-rustls = "0.23.0"
|
tokio-rustls = "0.23.3"
|
||||||
tokio-tungstenite = { version = "0.16.0", features = ["rustls-tls-webpki-roots"] }
|
tokio-tungstenite = { version = "0.16.1", features = ["rustls-tls-webpki-roots"] }
|
||||||
|
|
|
@ -17,4 +17,4 @@ path = "lib.rs"
|
||||||
deno_core = { version = "0.132.0", path = "../../core" }
|
deno_core = { version = "0.132.0", path = "../../core" }
|
||||||
deno_web = { version = "0.81.0", path = "../web" }
|
deno_web = { version = "0.81.0", path = "../web" }
|
||||||
rusqlite = { version = "0.27.0", features = ["unlock_notify", "bundled"] }
|
rusqlite = { version = "0.27.0", features = ["unlock_notify", "bundled"] }
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
|
|
|
@ -63,25 +63,25 @@ deno_webstorage = { version = "0.45.0", path = "../ext/webstorage" }
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
dlopen = "0.1.8"
|
dlopen = "0.1.8"
|
||||||
encoding_rs = "0.8.29"
|
encoding_rs = "0.8.31"
|
||||||
filetime = "0.2.15"
|
filetime = "0.2.16"
|
||||||
fs3 = "0.5.0"
|
fs3 = "0.5.0"
|
||||||
http = "0.2.4"
|
http = "0.2.6"
|
||||||
hyper = { version = "0.14.12", features = ["server", "stream", "http1", "http2", "runtime"] }
|
hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
|
||||||
libc = "0.2.121"
|
libc = "0.2.124"
|
||||||
log = "0.4.14"
|
log = "0.4.16"
|
||||||
lzzzz = '=0.8.0'
|
lzzzz = '=0.8.0'
|
||||||
netif = "0.1.3"
|
netif = "0.1.3"
|
||||||
notify = "=5.0.0-pre.14"
|
notify = "=5.0.0-pre.14"
|
||||||
once_cell = "1.10.0"
|
once_cell = "1.10.0"
|
||||||
regex = "1.5.5"
|
regex = "1.5.5"
|
||||||
ring = "0.16.20"
|
ring = "0.16.20"
|
||||||
serde = { version = "1.0.129", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
signal-hook-registry = "1.4.0"
|
signal-hook-registry = "1.4.0"
|
||||||
sys-info = "0.9.0"
|
sys-info = "0.9.1"
|
||||||
termcolor = "1.1.2"
|
termcolor = "1.1.3"
|
||||||
tokio = { version = "1.17", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
uuid = { version = "0.8.2", features = ["v4"] }
|
uuid = { version = "1.0.0", features = ["v4"] }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
fwdansi = "1.1.0"
|
fwdansi = "1.1.0"
|
||||||
|
|
|
@ -14,7 +14,7 @@ path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
derive_more = "0.99.17"
|
derive_more = "0.99.17"
|
||||||
serde = { version = "1.0.130", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
v8 = "0.42.0"
|
v8 = "0.42.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -12,22 +12,22 @@ name = "test_server"
|
||||||
path = "src/test_server.rs"
|
path = "src/test_server.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.57"
|
||||||
async-stream = "0.3.2"
|
async-stream = "0.3.3"
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
base64 = "0.13.0"
|
base64 = "0.13.0"
|
||||||
futures = "0.3.21"
|
futures = "0.3.21"
|
||||||
hyper = { version = "0.14.12", features = ["server", "http1", "http2", "runtime"] }
|
hyper = { version = "0.14.18", features = ["server", "http1", "http2", "runtime"] }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
once_cell = "1.10.0"
|
once_cell = "1.10.0"
|
||||||
os_pipe = "1.0.1"
|
os_pipe = "1.0.1"
|
||||||
parking_lot = "0.12.0"
|
parking_lot = "0.12.0"
|
||||||
pretty_assertions = "=1.2.0"
|
pretty_assertions = "=1.2.1"
|
||||||
regex = "1.5.5"
|
regex = "1.5.5"
|
||||||
rustls-pemfile = "0.2.1"
|
rustls-pemfile = "1.0.0"
|
||||||
serde = { version = "1.0.126", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
serde_json = "1.0.65"
|
serde_json = "1.0.79"
|
||||||
tokio = { version = "1.10.1", features = ["full"] }
|
tokio = { version = "1.17", features = ["full"] }
|
||||||
tokio-rustls = "0.23"
|
tokio-rustls = "0.23"
|
||||||
tokio-tungstenite = "0.16"
|
tokio-tungstenite = "0.16"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue