-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
78 lines (74 loc) · 3.36 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
74
75
76
77
[workspace.package]
version = "0.1.0"
license = "MIT"
edition = "2021"
rust-version = "1.69"
repository = "https://github.com/polywrap/pwr"
[workspace]
members = [
"packages/pwr",
"packages/script-wrap-utils",
"packages/script-wrap-utils-wasm",
"packages/wrap-utils",
"packages/wrap-utils-wasm",
"packages/easy-error-string",
"packages/wraps/script-wrap-manager",
"packages/wraps/multipart",
"packages/wraps/wrap-link-deployer",
"packages/plugins/http-server",
"packages/plugins/key-value-store",
"examples/simple-pwr-app",
"examples/http-server-app",
"examples/simple-storage-app",
"examples/advanced-server-app",
"examples/app-with-ui",
]
default-members = [
"packages/pwr",
"packages/script-wrap-utils",
"packages/script-wrap-utils-wasm",
"packages/wrap-utils",
"packages/wrap-utils-wasm",
"packages/easy-error-string",
"packages/plugins/http-server",
"packages/plugins/key-value-store",
"packages/wraps/script-wrap-manager",
"packages/wraps/multipart",
"packages/wraps/wrap-link-deployer",
"examples/simple-pwr-app",
"examples/http-server-app",
"examples/simple-storage-app",
"examples/advanced-server-app",
"examples/app-with-ui",
]
[workspace.dependencies]
script_wrap_utils = { path = "packages/script-wrap-utils" }
script_wrap_utils_wasm = { path = "packages/script-wrap-utils-wasm" }
wrap_utils = { path = "packages/wrap-utils" }
wrap_utils_wasm = { path = "packages/wrap-utils-wasm" }
easy_error_string = { version = "0.1.0", path = "packages/easy-error-string" }
polywrap_http_server_plugin = { path = "packages/plugins/http-server" }
polywrap_key_value_store_plugin = { path = "packages/plugins/key-value-store" }
polywrap_msgpack_serde = "0.0.2-beta.7"
polywrap_uri = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_core = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_client = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_plugin = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
wrap_manifest_schemas = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_resolvers = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_client_builder = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_client_default_config = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_wasm = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_fs_plugin = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap_http_plugin = { git = "https://github.com/polywrap/rust-client", branch = "nerfzael-invoker-context" }
polywrap-wasm-rs = { version = "0.11.2" }
tower-http = { version = "0.4.3", features = ["cors"] }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0"
rmp-serde = "1.1.1"
rmpv = { version = "1.0.0", features = ["with-serde"] }
base64 = "0.21.2"
reqwest = { version = "0.11.18", features = ["multipart", "json", "blocking"] }
thiserror = "1.0.37"
tokio = { version = "1", features = ["full"] }