From 087969e1170e3474a8d2bf2d2afe5ebd691b960c Mon Sep 17 00:00:00 2001 From: John Date: Sun, 21 Apr 2024 23:49:24 -0500 Subject: [PATCH] Cargo.toml: Add `documentation` key --- Cargo.toml | 1 + compiler/cl-ast/Cargo.toml | 1 + compiler/cl-interpret/Cargo.toml | 1 + compiler/cl-lexer/Cargo.toml | 1 + compiler/cl-parser/Cargo.toml | 1 + compiler/cl-repl/Cargo.toml | 1 + compiler/cl-structures/Cargo.toml | 1 + compiler/cl-token/Cargo.toml | 1 + compiler/cl-typeck/Cargo.toml | 1 + 9 files changed, 9 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 96fe598..b141a9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ resolver = "2" [workspace.package] repository = "https://git.soft.fish/j/Conlang" +documentation = "https://docs.soft.fish" version = "0.0.5" authors = ["John Breaux "] edition = "2021" diff --git a/compiler/cl-ast/Cargo.toml b/compiler/cl-ast/Cargo.toml index 3aed4e9..fbf3cd2 100644 --- a/compiler/cl-ast/Cargo.toml +++ b/compiler/cl-ast/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-ast" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/compiler/cl-interpret/Cargo.toml b/compiler/cl-interpret/Cargo.toml index 2b4467b..bad0de1 100644 --- a/compiler/cl-interpret/Cargo.toml +++ b/compiler/cl-interpret/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-interpret" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/compiler/cl-lexer/Cargo.toml b/compiler/cl-lexer/Cargo.toml index 42c8d42..3591189 100644 --- a/compiler/cl-lexer/Cargo.toml +++ b/compiler/cl-lexer/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "cl-lexer" +documentation.workspace = true repository.workspace = true version.workspace = true authors.workspace = true diff --git a/compiler/cl-parser/Cargo.toml b/compiler/cl-parser/Cargo.toml index f08b0f3..a2f8072 100644 --- a/compiler/cl-parser/Cargo.toml +++ b/compiler/cl-parser/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-parser" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/compiler/cl-repl/Cargo.toml b/compiler/cl-repl/Cargo.toml index 7c92001..6569dbc 100644 --- a/compiler/cl-repl/Cargo.toml +++ b/compiler/cl-repl/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-repl" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/compiler/cl-structures/Cargo.toml b/compiler/cl-structures/Cargo.toml index b8e7ea9..10dec62 100644 --- a/compiler/cl-structures/Cargo.toml +++ b/compiler/cl-structures/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-structures" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/compiler/cl-token/Cargo.toml b/compiler/cl-token/Cargo.toml index 95193f1..87b30a8 100644 --- a/compiler/cl-token/Cargo.toml +++ b/compiler/cl-token/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-token" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/compiler/cl-typeck/Cargo.toml b/compiler/cl-typeck/Cargo.toml index b191128..63e8835 100644 --- a/compiler/cl-typeck/Cargo.toml +++ b/compiler/cl-typeck/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "cl-typeck" repository.workspace = true +documentation.workspace = true version.workspace = true authors.workspace = true edition.workspace = true