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
- Host: GitHub
- URL: https://github.com/rcosta358/json-serializer
- Owner: rcosta358
- License: mit
- Created: 2024-12-23T14:49:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-21T16:15:05.000Z (12 months ago)
- Last Synced: 2025-07-24T17:14:22.502Z (6 months ago)
- Topics: golang, json, json-serializer, rust
- Language: Rust
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.

### 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 ./...
```