diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97e3d6a..4cd2c0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Stable Rust run: rustup toolchain install stable - name: Use Stable Rust diff --git a/Cargo.toml b/Cargo.toml index c749f5b..d3c512d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "logcall" -version = "0.1.9" +version = "0.1.10" edition = "2021" -authors = ["andylokandy "] +authors = ["FastLabs Developers"] description = "An attribute macro that logs the function return value." -repository = "https://github.com/andylokandy/logcall" +repository = "https://github.com/fast/logcall" documentation = "https://docs.rs/logcall" categories = ["development-tools::debugging"] readme = "README.md" diff --git a/LICENSE b/LICENSE index eb20f1e..9ffaaba 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 John Hodge +Copyright (c) 2023 FastLabs Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index cc2a1d4..ebd5ecc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Crates.io](https://img.shields.io/crates/v/logcall?style=flat-square&logo=rust)](https://crates.io/crates/logcall) [![Crates.io](https://img.shields.io/crates/d/logcall?style=flat-square&logo=rust)](https://crates.io/crates/logcall) [![Documentation](https://img.shields.io/docsrs/logcall?style=flat-square&logo=rust)](https://docs.rs/logcall/) -[![CI Status](https://img.shields.io/github/actions/workflow/status/andylokandy/logcall/ci.yml?style=flat-square&logo=github)](https://github.com/andylokandy/logcall/actions) +[![CI Status](https://img.shields.io/github/actions/workflow/status/fast/logcall/ci.yml?style=flat-square&logo=github)](https://github.com/fast/logcall/actions) [![Crates.io](https://img.shields.io/crates/l/logcall?style=flat-square&logo=)](https://crates.io/crates/logcall) `logcall` is a Rust procedural macro crate designed to automatically log function calls, their inputs, and their outputs. This macro facilitates debugging and monitoring by providing detailed logs of function executions with minimal boilerplate code.