-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
55 lines (48 loc) · 1.52 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "xmas"
version = "0.10.0"
authors = ["LemonHX <lemonhx@lemonhx.moe>"]
edition = "2021"
rust-version = "1.85"
license = "MIT"
readme = "README.md"
description = "WinterTC compatible ECMAScript/TypeScript runtime"
[workspace]
members = [
"rsquickjs/core",
"rsquickjs/macro",
"rsquickjs",
# xmas-js
"package-manager",
"bundler",
"modules",
"vsys",
"repl",
]
[workspace.dependencies]
# TODO: modify quickjs and rsquickjs-sys later
rquickjs-sys = { version = "0.10.0", git = "https://github.com/DelSkayn/rquickjs", rev = "111951b1a31075bdff46684e0ff29f37ff2a04b2" }
rsquickjs-core = { version = "0.10.0", path = "rsquickjs/core" }
rsquickjs-macro = { version = "0.10.0", path = "rsquickjs/macro" }
rsquickjs = { version = "0.10.0", path = "rsquickjs" }
xmas-js-modules = { path = "modules" }
xmas-package-manager = { path = "package-manager" }
xmas-vsys = { path = "vsys" }
xmas-bundler = { path = "bundler" }
[dependencies]
xmas-js-modules = { workspace = true }
xmas-js-repl = { path = "repl" }
xmas-package-manager = { workspace = true }
xmas-bundler = { workspace = true }
xmas-vsys = { workspace = true }
rsquickjs = { workspace = true }
tokio = { version = "1.36", features = ["full"] }
anyhow = "1.0.100"
clap = { version = "4.5", features = ["derive"] }
colored = "3"
compact_str = { version = "0.9.0", features = ["serde"] }
node-semver = { git = "https://github.com/danielhuang/node-semver-rs", rev = "bf4b103dc88b310c9dc049433aff1a14716e1e68" }
tracing = "0.1"
tracing-subscriber = "0.3"
[features]
default = []