starpc 0.45.0 → 0.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/echo/echo.pb.js +1 -1
- package/dist/mock/mock.pb.js +1 -1
- package/dist/rpcstream/rpcstream.pb.js +1 -1
- package/dist/srpc/rpcproto.pb.js +1 -1
- package/echo/Cargo.toml +0 -4
- package/echo/echo.pb.go +1 -1
- package/echo/echo.pb.rs +9 -0
- package/echo/echo.pb.ts +1 -1
- package/echo/echo_e2e_test.cpp +1 -1
- package/echo/echo_srpc.pb.cpp +29 -41
- package/echo/echo_srpc.pb.go +1 -1
- package/echo/echo_srpc.pb.hpp +109 -132
- package/echo/echo_srpc.pb.rs +312 -0
- package/echo/gen/mod.rs +15 -2
- package/echo/main.rs +9 -0
- package/go.mod +3 -2
- package/go.sum +6 -4
- package/mock/mock.pb.go +1 -1
- package/mock/mock.pb.rs +9 -0
- package/mock/mock.pb.ts +1 -1
- package/mock/mock_srpc.pb.cpp +11 -14
- package/mock/mock_srpc.pb.go +1 -1
- package/mock/mock_srpc.pb.hpp +31 -35
- package/mock/mock_srpc.pb.rs +103 -0
- package/package.json +1 -1
- package/srpc/Cargo.toml +1 -2
- package/srpc/client-rpc.cpp +1 -1
- package/srpc/client.cpp +1 -1
- package/srpc/common-rpc.cpp +1 -1
- package/srpc/lib.rs +1 -0
- package/srpc/mux.cpp +1 -1
- package/srpc/packet.cpp +1 -1
- package/srpc/proto.rs +5 -0
- package/srpc/rpcproto.pb.go +1 -1
- package/srpc/rpcproto.pb.rs +62 -0
- package/srpc/rpcproto.pb.ts +1 -1
- package/srpc/rpcstream/mod.rs +38 -0
- package/srpc/rpcstream/proto.rs +286 -0
- package/srpc/rpcstream/stream.rs +517 -0
- package/srpc/rpcstream/writer.rs +150 -0
- package/srpc/server-rpc.cpp +1 -1
- package/echo/build.rs +0 -15
- package/srpc/build.rs +0 -15
- package/srpc/proto/mod.rs +0 -10
package/srpc/proto/mod.rs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
//! Generated protocol buffer types for starpc.
|
|
2
|
-
//!
|
|
3
|
-
//! This module contains the Packet, CallStart, CallData types generated from
|
|
4
|
-
//! rpcproto.proto. These types define the wire protocol for starpc.
|
|
5
|
-
|
|
6
|
-
// Include the generated protobuf types.
|
|
7
|
-
include!(concat!(env!("OUT_DIR"), "/srpc.rs"));
|
|
8
|
-
|
|
9
|
-
// Re-export commonly used items.
|
|
10
|
-
pub use self::packet::Body;
|