Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/jvdsandt/protobuf-smalltalk

Protocol buffers support for Smalltalk
https://github.com/jvdsandt/protobuf-smalltalk

pharo pharo-smalltalk protobuf protobuf3 smaltalk

Last synced: 2 months ago
JSON representation

Protocol buffers support for Smalltalk

Lists

README

        

# protobuf-smalltalk
[![Build Status](https://travis-ci.org/jvdsandt/protobuf-smalltalk.svg?branch=master)](https://travis-ci.org/jvdsandt/protobuf-smalltalk)

Protocol buffers support for Smalltalk. [Protocol buffers](https://developers.google.com/protocol-buffers/)
is a language and
platform-neutral serialization protocol created by Google. This projects adds support for
the proto3 version of this protocol to the Smalltalk programming language.

The library is developed in [Pharo](https://pharo.org/) Smalltalk and uses [PetitParser2](https://github.com/kursjan/petitparser2)
for parsing proto files.

## Installing protobuf-smalltalk

Pharo:

```smalltalk
Metacello new
baseline: 'Protobuf';
repository: 'github://jvdsandt/protobuf-smalltalk';
load.
```