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: 3 months ago
JSON representation
Protocol buffers support for Smalltalk
- Host: GitHub
- URL: https://github.com/jvdsandt/protobuf-smalltalk
- Owner: jvdsandt
- License: mit
- Created: 2018-10-06T10:00:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-17T21:11:10.000Z (almost 5 years ago)
- Last Synced: 2024-09-20T15:32:16.197Z (4 months ago)
- Topics: pharo, pharo-smalltalk, protobuf, protobuf3, smaltalk
- Language: Smalltalk
- Size: 90.8 KB
- Stars: 13
- Watchers: 5
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - Protobuf - [Google's protocol buffers](https://developers.google.com/protocol-buffers/) support for Pharo Smalltalk. (Data interexchange format)
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.
```