├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── examples ├── pubsub.rs ├── rpc_callee.rs ├── rpc_callee_with_authentication.rs ├── rpc_callee_with_context.rs └── rpc_caller.rs └── src ├── client.rs ├── common.rs ├── core ├── mod.rs ├── recv.rs └── send.rs ├── error.rs ├── lib.rs ├── message.rs ├── serializer ├── json.rs ├── mod.rs └── msgpack.rs └── transport ├── mod.rs ├── tcp.rs └── websocket.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/README.md -------------------------------------------------------------------------------- /examples/pubsub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/examples/pubsub.rs -------------------------------------------------------------------------------- /examples/rpc_callee.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/examples/rpc_callee.rs -------------------------------------------------------------------------------- /examples/rpc_callee_with_authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/examples/rpc_callee_with_authentication.rs -------------------------------------------------------------------------------- /examples/rpc_callee_with_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/examples/rpc_callee_with_context.rs -------------------------------------------------------------------------------- /examples/rpc_caller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/examples/rpc_caller.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/core/mod.rs -------------------------------------------------------------------------------- /src/core/recv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/core/recv.rs -------------------------------------------------------------------------------- /src/core/send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/core/send.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/message.rs -------------------------------------------------------------------------------- /src/serializer/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/serializer/json.rs -------------------------------------------------------------------------------- /src/serializer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/serializer/mod.rs -------------------------------------------------------------------------------- /src/serializer/msgpack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/serializer/msgpack.rs -------------------------------------------------------------------------------- /src/transport/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/transport/mod.rs -------------------------------------------------------------------------------- /src/transport/tcp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/transport/tcp.rs -------------------------------------------------------------------------------- /src/transport/websocket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elast0ny/wamp_async/HEAD/src/transport/websocket.rs --------------------------------------------------------------------------------