Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Mason L'Etoile
Copyright (c) 2025 Starlet Libraries, Mason L'Etoile

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Starlet Serializer

![Tests](https://github.com/starlet-engine/serializer/actions/workflows/test.yml/badge.svg)
![Tests](https://github.com/starlet-libs/serializer/actions/workflows/test.yml/badge.svg)
[![C++20](https://img.shields.io/badge/C%2B%2B-20-blue.svg)](https://isocpp.org/std/the-standard)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)

Expand All @@ -26,8 +26,8 @@ A lightweight serialization library for **Starlet** projects to handle both data
- Error-safe macros: `STARLET_PARSE_OR`, `STARLET_PARSE_STRING_OR`

## Dependencies
- [starlet-math](https://github.com/starlet-engine/math) (auto-fetched)
- [starlet-logger](https://github.com/starlet-engine/logger) (auto-fetched)
- [starlet-math](https://github.com/starlet-libs/math) (auto-fetched)
- [starlet-logger](https://github.com/starlet-libs/logger) (auto-fetched)

## Installation

Expand All @@ -44,7 +44,7 @@ A lightweight serialization library for **Starlet** projects to handle both data
include(FetchContent)

FetchContent_Declare(starlet_serializer
GIT_REPOSITORY https://github.com/starlet-engine/serializer.git
GIT_REPOSITORY https://github.com/starlet-libs/serializer.git
GIT_TAG main
)
FetchContent_MakeAvailable(starlet_serializer)
Expand All @@ -65,7 +65,7 @@ executable('app_name', 'main.cpp', dependencies: starlet_serializer_dep)

### Building and Testing
```bash
git clone https://github.com/starlet-engine/serializer.git
git clone https://github.com/starlet-libs/serializer.git
cd serializer
```

Expand Down
Loading