protobuf definitions for codemp -- code multiplexer
Find a file
2024-09-05 16:44:50 +02:00
.github/workflows ci: add basic ci to project 2024-09-05 00:08:41 +02:00
proto docs: written docs 2024-09-05 00:08:07 +02:00
src docs: add logo to docs 2024-09-05 02:44:15 +02:00
.editorconfig chore: rustfmt & editorconfig 2024-03-09 19:39:23 +01:00
.gitignore First commit of codemp-proto in new repo 2024-03-09 18:45:32 +01:00
.rustfmt.toml chore: rustfmt & editorconfig 2024-03-09 19:39:23 +01:00
build.rs feat: add session service, version bump 2024-08-21 21:38:36 +02:00
Cargo.toml chore: add repository url to cargo.toml 2024-09-05 06:23:43 +02:00
LICENSE docs: license 2024-09-05 00:12:35 +02:00
README.md docs: added docs link, moved gitter badge 2024-09-05 16:44:50 +02:00

codemp

Actions Status Crates.io Version docs.rs Crates.io License Gitter

codemp is a collaborative text editing solution to work remotely.

It seamlessly integrates in your editor providing remote cursors and instant text synchronization, as well as a remote virtual workspace for you and your team.

Protocol

gRPC protocol specification for codemp.

This is a prost crate: it will generated Rust code based on the protobuf defintions contained in the proto/ directory.

From protobuf definition, prost will compile structs for all protocol messages but also server and client service implementations.

Building

To compile this crate, protoc must be installed: prost requires it to compile the protocol definition.