From 937eca28b6a0e4e9ccb8a64d36af6ef86bd803fd Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Tue, 13 Feb 2024 07:30:44 +0100 Subject: [PATCH] fix: add doc field to cargo toml --- bin/edlang/Cargo.toml | 2 ++ lib/edlang_ast/Cargo.toml | 2 ++ lib/edlang_check/Cargo.toml | 2 ++ lib/edlang_codegen_llvm/Cargo.toml | 2 ++ lib/edlang_driver/Cargo.toml | 2 ++ lib/edlang_ir/Cargo.toml | 2 ++ lib/edlang_lowering/Cargo.toml | 2 ++ lib/edlang_parser/Cargo.toml | 2 ++ lib/edlang_session/Cargo.toml | 2 ++ lib/edlang_span/Cargo.toml | 2 ++ 10 files changed, 20 insertions(+) diff --git a/bin/edlang/Cargo.toml b/bin/edlang/Cargo.toml index c16b4a2cc..a015b0da7 100644 --- a/bin/edlang/Cargo.toml +++ b/bin/edlang/Cargo.toml @@ -8,6 +8,8 @@ readme = "README.md" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_ast/Cargo.toml b/lib/edlang_ast/Cargo.toml index 66e7c5590..8b897ec4e 100644 --- a/lib/edlang_ast/Cargo.toml +++ b/lib/edlang_ast/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_ast" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_check/Cargo.toml b/lib/edlang_check/Cargo.toml index dd96dc6ee..514712df9 100644 --- a/lib/edlang_check/Cargo.toml +++ b/lib/edlang_check/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_check" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_codegen_llvm/Cargo.toml b/lib/edlang_codegen_llvm/Cargo.toml index acd872ebc..3cbf1160a 100644 --- a/lib/edlang_codegen_llvm/Cargo.toml +++ b/lib/edlang_codegen_llvm/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/ededlang_codegen_llvmang" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_driver/Cargo.toml b/lib/edlang_driver/Cargo.toml index df84d155d..4ac549359 100644 --- a/lib/edlang_driver/Cargo.toml +++ b/lib/edlang_driver/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_driver" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_ir/Cargo.toml b/lib/edlang_ir/Cargo.toml index 41fa09e9d..f253e7a7e 100644 --- a/lib/edlang_ir/Cargo.toml +++ b/lib/edlang_ir/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_ir" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_lowering/Cargo.toml b/lib/edlang_lowering/Cargo.toml index c05fc4a81..62a10ce94 100644 --- a/lib/edlang_lowering/Cargo.toml +++ b/lib/edlang_lowering/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_lowering" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_parser/Cargo.toml b/lib/edlang_parser/Cargo.toml index 384b3565e..aab7524d9 100644 --- a/lib/edlang_parser/Cargo.toml +++ b/lib/edlang_parser/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_parser" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_session/Cargo.toml b/lib/edlang_session/Cargo.toml index ebe76e428..23dbc6a3b 100644 --- a/lib/edlang_session/Cargo.toml +++ b/lib/edlang_session/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_session" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/lib/edlang_span/Cargo.toml b/lib/edlang_span/Cargo.toml index e8412866c..34e9973ca 100644 --- a/lib/edlang_span/Cargo.toml +++ b/lib/edlang_span/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" keywords = ["llvm", "compiler"] license = "AGPL-3.0-only" categories = ["compilers"] +documentation = "https://docs.rs/edlang_span" +repository = "https://github.com/edg-l/edlang" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html