https://github.com/andricdu/rust-schema-registry-server
https://github.com/andricdu/rust-schema-registry-server
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andricdu/rust-schema-registry-server
- Owner: andricDu
- License: gpl-3.0
- Created: 2020-10-13T14:29:58.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2020-10-24T18:24:33.000Z (almost 5 years ago)
- Last Synced: 2025-06-09T13:52:20.459Z (4 months ago)
- Language: Rust
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-schema-registry-server
Avro schema registry. Compatible with Spring Cloud Schema Registry API.
## Development
### Rust
To install:
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```To update:
```bash
rustup update
```### Build Project
```bash
cargo build
```### Diesel CLI for making migrations
```bash
cargo install diesel_cli --no-default-features --features postgres
```If you encounter an error it could be related to not having the postgres development headers. On ubuntu you can install them with the following:
```bash
sudo apt install postgresql-server-dev-all
```For Fedora/Redhat, install `postgresql-devel` with yum or dnf:
```bash
sudo dnf install postgresql-devel
```