-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 977 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 977 Bytes
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
[package]
name = "ohim"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
bitflags = { workspace = true }
headers = { workspace = true }
malloc_size_of = { workspace = true }
malloc_size_of_derive = { workspace = true }
regex = { workspace = true }
url = { workspace = true }
uuid = { workspace = true }
wasmtime = { workspace = true }
wasmtime-wasi = { workspace = true }
wit-component = { workspace = true }
[workspace]
resolver = '2'
members = ["wasm"]
[workspace.dependencies]
# Wasmtime crates
wasmtime = "34.0"
wasmtime-wasi = "34.0"
wit-component = "0.235.0"
wit-bindgen = { version = "0.43.0", default-features = false }
# Servo crates
malloc_size_of = { package = "servo_malloc_size_of", git = "https://github.com/servo/servo" }
malloc_size_of_derive = "0.1"
# Others
anyhow = { version = "1.0.93", default-features = false }
bitflags = "2.9"
headers = "0.4"
regex = "1.11"
url = "2.5"
uuid = { version = "1.12.1", features = ["v4"] }