-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (67 loc) · 1.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
resolver = "2"
members = [
# Cli
"cli",
"lib/instruments",
"lib/swarmd-generated",
"lib/slug-rs",
"lib/swarmd_local_runtime",
]
[workspace.package]
authors = ["Swarmd"]
edition = "2021"
license = "MIT"
repository = "https://github.com/swarmd-io/swarmd"
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
async-stream = "0.3"
base64 = "0.21"
derivative = "2"
derive_builder = "0.12"
dotenv = "0.15"
indicatif = "0.17"
insta = { version = "1.33.0", features = ["yaml"] }
clap = "4"
config = "0.13"
futures = "0.3"
log = "0.4"
schemars = { version = "0.8" }
slug = "0.1"
tracing = "0.1"
tracing-core = "0.1"
tracing-subscriber = "0.3"
thiserror = "1"
toml = "0.8"
tokio = "1"
tokio-util = "0.7"
sentry = "0.32"
sentry-tracing = "0.32"
serde = "^1.0"
serde_json = "1.0"
# Deno
deno_ast = { version = "0.31", features = ["transpiling"] }
deno_core = "0.232"
deno_console = "0.126"
deno_crypto = "0.140"
deno_fetch = "0.150"
deno_http = "0.123"
deno_tls = "0.113"
deno_net = "0.118"
deno_url = "0.126"
deno_web = "0.157"
deno_webidl = "0.126"
deno_websocket = "0.131"
# Internal
swarmd_instruments = { version = "0.1", path = "./lib/instruments" }
swarmd_generated = { version = "0.1.1-alpha.2", path = "./lib/swarmd-generated" }
swarmd_slug-rs = { version = "0.1.1-alpha.2", path = "./lib/slug-rs" }
swarmd_local_runtime = { version = "0.0", path = "./lib/swarmd_local_runtime" }
[profile.dev]
panic = "abort"
[profile.release]
debug = true
panic = "abort"
lto = "thin"
codegen-units = 1