colonyos 1.0.5

Rust SDK for ColonyOS - build distributed applications with executors that can run anywhere
Documentation
[dependencies.base64]
version = "0.21"

[dependencies.hex]
version = "0.4"

[dependencies.k256]
features = ["ecdsa", "sha256"]
version = "0.13"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sha3]
version = "0.10"

[dependencies.wasm-bindgen]
optional = true
version = "0.2.88"

[dependencies.wasm-bindgen-futures]
optional = true
version = "0.4.38"

[dev-dependencies.random-string]
version = "1.0"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "simple_executor"
path = "examples/simple_executor.rs"

[[example]]
name = "submit_process"
path = "examples/submit_process.rs"

[[example]]
name = "workflow"
path = "examples/workflow.rs"

[features]
default = ["native"]
native = []
wasm = ["wasm-bindgen", "wasm-bindgen-futures"]

[lib]
crate-type = ["cdylib", "rlib"]
name = "colonyos"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "asynchronous", "web-programming"]
description = "Rust SDK for ColonyOS - build distributed applications with executors that can run anywhere"
documentation = "https://docs.rs/colonyos"
edition = "2021"
homepage = "https://colonyos.io"
keywords = ["colonies", "colonyos", "distributed", "computing", "orchestration"]
license = "MIT"
name = "colonyos"
readme = "README.md"
repository = "https://github.com/colonyos/rust"
version = "1.0.5"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.futures-util]
version = "0.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rand]
version = "0.8"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls"]
version = "0.11"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
features = ["full"]
version = "1"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio-tungstenite]
features = ["rustls-tls-native-roots"]
version = "0.21"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
features = ["js"]
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.rand]
features = ["getrandom"]
version = "0.8"

[target.'cfg(target_arch = "wasm32")'.dependencies.reqwest]
default-features = false
features = ["json"]
version = "0.12"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"