forked from nutshimit/mashin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (59 loc) · 1.69 KB
/
Cargo.toml
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
56
57
58
59
60
61
62
[workspace.package]
edition = "2021"
license = "GPL-3.0 AND Apache-2.0"
authors = ["Nutshimit Team <hey@mashin.land>"]
repository = "https://github.com/nutshimit/mashin"
[workspace]
resolver = "2"
members = [
"core",
"runtime",
"cli",
"sdk",
"sdk/macro",
"sdk/bindgen",
"sdk/primitives",
]
[workspace.dependencies]
anyhow = "1.0.66"
thiserror = "1.0.37"
tokio = { version = "=1.25.0", features = ["full"] }
deno_ast = { version = "=0.25.0", features = ["transpiling"] }
deno_core = "=0.177.0"
deno_web = "=0.126.0"
deno_fetch = "=0.119.0"
deno_console = "=0.95.0"
deno_webidl = "=0.95.0"
deno_url = "=0.95.0"
deno_websocket = "=0.100.0"
deno_bindgen = "0.7.0"
dlopen = "0.1.8"
serde = { version = "1.0.149", features = ["derive", "rc"] }
serde_json = "1.0.85"
winapi = "=0.3.9"
libffi = "3.1.0"
async-trait = "0.1.68"
log = "0.4.17"
termcolor = "1.2.0"
atty = "=0.2.14"
once_cell = "1.17.1"
env_logger = "0.10.0"
reqwest = { version = "0.11.15", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "rustls-tls-webpki-roots"], default-features = false }
urn = { version = "0.5.1", features = ["serde"] }
url = "2.3"
syn = { version = "2.0.15", features = ["full"] }
quote = "1.0.26"
base64 = "0.21.0"
itertools = "0.10"
sodiumoxide = "0.2.7"
clap = { version = "4.2.1", features = ["derive"] }
dialoguer = "0.10.4"
indicatif = "0.17.3"
console = "0.15.5"
parking_lot = "0.12.1"
# mashin
mashin_core = { version = "0.1.5", path = "./core" }
mashin_runtime = { version = "0.1.5", path = "./runtime" }
mashin_sdk = { version = "0.1.10", path = "./sdk" }
mashin_macro = { version = "0.1.9", path = "./sdk/macro" }
mashin_primitives = { version = "0.1.0", path = "./sdk/primitives" }