diff --git a/README.md b/README.md
index bda9589..f884402 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Starlet Serializer
-
+
[](https://isocpp.org/std/the-standard)
[](./LICENSE)
@@ -24,15 +24,12 @@ A lightweight serialization library for **Starlet** projects to handle both data
- Whitespace handling: `skipWhitespace`, `skipToNextLine`, `trimEOL`
- Error-safe macros: `STARLET_PARSE_OR`, `STARLET_PARSE_STRING_OR`
-
-
-
## Prerequisites
- C++20 or later
- CMake 3.20+
- **Dependencies**:
- - [starlet-math](https://github.com/masonlet/starlet-math) (auto-fetched)
- - [starlet-logger](https://github.com/masonlet/starlet-logger) (auto-fetched)
+ - [starlet-math](https://github.com/starlet-engine/math) (auto-fetched)
+ - [starlet-logger](https://github.com/starlet-engine/logger) (auto-fetched)
## Installation
@@ -41,7 +38,7 @@ A lightweight serialization library for **Starlet** projects to handle both data
include(FetchContent)
FetchContent_Declare(starlet_serializer
- GIT_REPOSITORY https://github.com/masonlet/starlet-serializer.git
+ GIT_REPOSITORY https://github.com/starlet-engine/serializer.git
GIT_TAG main
)
FetchContent_MakeAvailable(starlet_serializer)
@@ -51,30 +48,18 @@ target_link_libraries(app_name PRIVATE starlet_serializer)
### Building from Source
```bash
-# Clone the repository
-git clone https://github.com/masonlet/starlet-serializer.git
-cd starlet-serializer
-
-# Configure and build
+git clone https://github.com/starlet-engine/serializer.git
+cd serializer
cmake -B build
cmake --build build
```
-
-
-
## Testing
```bash
-# Configure with tests enabled
cmake -B build -DBUILD_TESTS=ON
-
-# Build and run tests
cmake --build build
ctest --test-dir build --output-on-failure
```
-
-
-
## License
MIT License - see [LICENSE](./LICENSE) for details.