-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (44 loc) · 1.05 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
[workspace]
resolver = "2"
members = [
"packages/model",
"packages/provider-plugins/host",
"packages/provider-plugins/plugin-random-cube-all",
"packages/standard-models",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Meadow Liu <[email protected]>"]
repository = "https://github.com/meadowsys/wiwipaccer"
license = "AGPL-3.0-only"
publish = false
[workspace.dependencies.hashbrown]
version = "0.15.2"
[workspace.dependencies.semver]
version = "1.0.23"
[workspace.dependencies.wasmtime]
version = "26.0.0"
default-features = false
features = [
"runtime",
"cranelift",
"component-model",
"async",
"demangle",
"coredump",
"addr2line"
# vt: I dunno if beneficial
# "pooling-allocator"
# vt: for debugging guest code
# "profiling"
# vt: for debugging guest code
# "debug-builtins"
]
[workspace.dependencies.wit-bindgen]
version = "0.34.0"
[workspace.dependencies.wiwi]
git = "https://github.com/meadowsys/wiwi"
rev = "f000a24fa11c6e6d2fbf078f20bd8e571efd2d15"
[workspace.dependencies.wiwipaccer-model]
path = "packages/model"