forked from andreubotella/deno-simple-module-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (19 loc) · 670 Bytes
/
Cargo.toml
File metadata and controls
22 lines (19 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "deno-simple-module-loader"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/andreubotella/deno-simple-module-loader"
description = "A simple implementation of deno_core's ModuleLoader trait which supports loading modules from the network."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
deno_core = "0.248.0"
reqwest = "0.11.23"
tokio = { version = "1.35.1", features = ["fs"] }
data-url = "0.3.1"
[dev-dependencies]
tokio = { version = "1.35.1", features = ["rt", "macros"] }
warp = "0.3.6"
lazy_static = "1.4.0"
http = "0.2.9"