From 298fd68537f9fb724e656f46e29ecd5ef9710814 Mon Sep 17 00:00:00 2001 From: Viktor Charypar Date: Thu, 26 Sep 2024 15:04:48 +0100 Subject: [PATCH] Publish 0.1 --- Cargo.toml | 1 + pathogen/Cargo.toml | 5 ++++- pathogen_macros/Cargo.toml | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5505507..cdee85a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,4 @@ resolver = "2" authors = ["Red Badger Consulting Limited"] edition = "2021" rust-version = "1.66.0" +repository = "https://github.com/redbadger/pathogen/" diff --git a/pathogen/Cargo.toml b/pathogen/Cargo.toml index b707f54..0188d2f 100644 --- a/pathogen/Cargo.toml +++ b/pathogen/Cargo.toml @@ -2,10 +2,13 @@ name = "pathogen" version = "0.1.0" edition.workspace = true +description = "Typed references and deep mutation into Rust types" +license = "MIT" +repository.workspace = true [dependencies] chrono = { version = "0.4.35", features = ["serde"] } -pathogen_macros = { path = "../pathogen_macros" } +pathogen_macros = "0.1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1" diff --git a/pathogen_macros/Cargo.toml b/pathogen_macros/Cargo.toml index 17fbf59..757c8d9 100644 --- a/pathogen_macros/Cargo.toml +++ b/pathogen_macros/Cargo.toml @@ -2,6 +2,9 @@ name = "pathogen_macros" version = "0.1.0" edition.workspace = true +description = "Macros for the Pathogen crate" +license = "MIT" +repository.workspace = true [lib] proc-macro = true