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

https://github.com/rcosta358/json-serializer

Applications for JSON serialization, deserialization and accessor functionality in Rust and Go using a pipeline architecture
https://github.com/rcosta358/json-serializer

golang json json-serializer rust

Last synced: 5 months ago
JSON representation

Applications for JSON serialization, deserialization and accessor functionality in Rust and Go using a pipeline architecture

Awesome Lists containing this project

README

          

# JSON Serializer
## Foundations of Programming Languages (FLP)
### MSc in Computer Engineering - Faculty of Sciences of the University of Lisbon
#### Winter Semester 2024/2025

Applications for JSON serialization, deserialization and accessor functionality in both [Rust](https://www.rust-lang.org/) and [Go](https://go.dev/) using a pipeline architecture.

![](https://skillicons.dev/icons?i=rust,go)

### How to Run

#### Rust

```bash
cd rust
cargo run
```

#### Go

```bash
cd go
go run ./main
```

### How to Test

#### Rust

```bash
cd rust
cargo test
```

#### Go

```bash
cd go
go test ./...
```