-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
73 lines (64 loc) · 2.26 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
[package]
name = "rumblebot"
version = "0.1.0"
authors = ["Anton <[email protected]>", "Noa <[email protected]>"]
edition = "2018"
mutually_exclusive_features = ["jemalloc", "mimalloc"]
# https://github.com/wasmerio/wasmer/issues/3377
resolver = "2"
[dependencies]
logic = { path = "../logic/logic" }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_with = "3.7.0"
maplit = "1.0"
tokio = { version = "1.36", features = ["process", "macros", "io-std", "time"] }
tokio-stream = { version = "0.1", features = ["net"] }
futures-util = "0.3.30"
warp = { version = "0.3", default-features = false }
static_dir = "0.2"
webbrowser = "0.8.13"
reqwest = { version = "0.12", features = [
"cookies",
"json",
"native-tls-vendored",
] }
native-runner = { path = "../logic/env-runners/native" }
wasi-process2 = "=0.3.5"
wasmer = { version = "3", default-features = false }
wasmer-cache = "3"
wasmer-wasi = "3"
anyhow = "1.0.81"
itertools = "0.12.1"
tempfile = "3.10.1"
structopt = "0.3.26"
clap = { version = "2.34", default-features = false }
shell-words = "1.1.0"
once_cell = "1.19.0"
directories = { package = "directories-next", version = "2.0" }
toml = "0.8"
async-trait = "0.1.78"
owning_ref = "0.4.1"
rpassword = "5.0"
strum = { version = "0.26.2", features = ["derive"] }
log = "0.4"
env_logger = { version = "0.11", default-features = false }
termcolor = "1.4"
textwrap = { version = "0.16", default-features = false }
sentry = "0.32.2"
jemallocator = { version = "0.5.4", optional = true }
mimalloc = { version = "*", default-features = false, optional = true }
[features]
default = ["build-cranelift", "jemalloc"]
build-cranelift = ["wasmer-compiler-cranelift"]
build-llvm = ["wasmer-compiler-llvm", "llvm-sys-120"]
jemalloc = ["jemallocator"]
mimalloc = ["dep:mimalloc"]
[build-dependencies]
wasmer = { version = "3", default-features = false, features = ["compiler"] }
wasmer-compiler = "3"
wasmer-compiler-cranelift = { version = "3", optional = true }
wasmer-compiler-llvm = { version = "3", optional = true }
llvm-sys-120 = { package = "llvm-sys", version = "120.3.2", features = ["prefer-static"], optional = true }
[patch.crates-io]
multipart = { git = "https://github.com/coolreader18/multipart", rev = "ee033794ada7c322e3cef50713854dff873f546d" }