From 9196d3b1dabbe7e6b7a945792d6e664b3ae36419 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 23 Oct 2023 21:38:06 -0500 Subject: [PATCH] Add package metadata --- Cargo.toml | 4 +++- libconlang/Cargo.toml | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 006e400..3449e70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,9 @@ members = ["libconlang", "lerox", "constr"] resolver = "2" [workspace.package] +repository = "https://git.soft.fish/j/Conlang" version = "0.0.1" -authors = ["John Breaux"] +authors = ["John Breaux "] edition = "2021" license = "MIT" +registry = ["soft-fish"] diff --git a/libconlang/Cargo.toml b/libconlang/Cargo.toml index 8d109cf..7120afc 100644 --- a/libconlang/Cargo.toml +++ b/libconlang/Cargo.toml @@ -1,13 +1,15 @@ [package] name = "conlang" +description = "The Conlang Programming Language" +keywords = ["interpreter", "programming", "language"] authors.workspace = true version.workspace = true edition.workspace = true license.workspace = true +registry.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -lerox = { path = "../lerox" } -constr = { path = "../constr" } unicode-xid = "0.2.4"