-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (53 loc) · 1.16 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
[package]
name = "elvwasm"
description = "Contains and collects the bitcode extension API for the Eluvio content fabric"
homepage = "https://eluvio.co/"
version = "1.1.0"
edition = "2021"
repository = "https://github.com/eluv-io/elv-wasm"
readme = "README.md"
rust-version = "1.56.0"
license = "Apache-2.0"
keywords = ["eluvio", "content", "fabric"]
categories = ["api-bindings", "wasm"]
exclude = [
"samples/*",
"scripts/*",
"build.rs",
".gitignore",
".github/*",
"doc.tpl",
"mock/*",
]
[profile.release]
strip = true # Automatically strip symbols from the binary.
[lib]
crate-type = ["rlib", "cdylib"]
path = "src/lib.rs"
[dependencies]
serde = "1.0.156"
serde_json = "1.0.94"
serde_derive = "1.0.156"
lazy_static = "1.4.0"
scopeguard = "1.1.0"
base64 = "0.21.0"
snailquote = "0.3.1"
json_dotpath = "1.1.0"
structopt = "0.3.25"
thiserror = "1.0.30"
wapc = "1.0.0"
wapc-guest = "1.0"
[workspace]
members = [
"samples",
"samples/rproxy",
"samples/real-img",
"samples/search",
"samples/objtar",
"samples/lro",
"samples/external",
"samples/meta",
"samples/external-img",
"samples/panic",
"samples/parts_download",
]