forked from feather-rs/feather
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 769 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
[package]
name = "feather-plugin-host"
version = "0.1.0"
authors = [ "caelunshun <caelunshun@gmail.com>" ]
edition = "2018"
[dependencies]
ahash = "0.7"
anyhow = "1"
bincode = "1"
bumpalo = "3"
bytemuck = "1"
feather-base = { path = "../base" }
feather-common = { path = "../common" }
feather-ecs = { path = "../ecs" }
feather-plugin-host-macros = { path = "macros" }
libloading = "0.7"
log = "0.4"
paste = "1"
quill-common = { path = "../../quill/common" }
quill-plugin-format = { path = "../../quill/plugin-format" }
serde = "1"
tempfile = "3"
vec-arena = "1"
wasmer = { version = "1", default-features = false, features = [ "jit" ] }
wasmer-wasi = { version = "1", default-features = false }
[features]
llvm = [ "wasmer/llvm" ]
cranelift = [ "wasmer/cranelift" ]