-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 838 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "webx"
version = "1.0.0"
edition = "2021"
description = "A language and framework for building web application endpoints."
authors = ["William Rågstad"]
homepage = "https://webx.sh"
documentation = "https://webx.sh/docs"
repository = "https://github.com/webx-net/webx"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.31"
clap = { version = "4.3.21", features = ["color"] }
colored = "2.0.4"
ctrlc = "3.4.4"
deno_core = "0.242.0"
http = "0.2.9"
http-body-util = "0.1.0"
hyper = { version = "1.1.0", features = ["full"] }
hyper-util = { version = "0.1.2", features = ["full"] }
notify = "6.1.1"
regex = "1.10.1"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
tokio = { version = "1.35.1", features = ["full"] }