From 27c2ec1c1002bb8476c46d37fc6eccb3c27356b3 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Champin Date: Mon, 17 Mar 2025 20:07:51 +0100 Subject: [PATCH] layout for a new work-item 'iri' --- .github/CODEOWNER | 3 +++ Cargo.toml | 1 + iri/Cargo.toml | 14 ++++++++++++++ iri/src/lib.rs | 4 ++++ 4 files changed, 22 insertions(+) create mode 100644 iri/Cargo.toml create mode 100644 iri/src/lib.rs diff --git a/.github/CODEOWNER b/.github/CODEOWNER index 1e6b4ac..2dfa4d9 100644 --- a/.github/CODEOWNER +++ b/.github/CODEOWNER @@ -9,5 +9,8 @@ # Owners of the /dummy work-item /dummy @pchampin @Tpt # ... +# Owners of the /iri work-item +/iri @pchampin + # Owners of another work item # ... diff --git a/Cargo.toml b/Cargo.toml index 86fff64..d3ed1dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ members = [ "dummy", + "iri", ] resolver = "3" diff --git a/iri/Cargo.toml b/iri/Cargo.toml new file mode 100644 index 0000000..4421061 --- /dev/null +++ b/iri/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "r2c2_iri" +version.workspace = true +authors.workspace = true +edition.workspace = true +repository.workspace = true +readme.workspace = true +license-file.workspace = true +keywords.workspace = true + +[dependencies] + +[lints] +workspace = true diff --git a/iri/src/lib.rs b/iri/src/lib.rs new file mode 100644 index 0000000..6f93b2a --- /dev/null +++ b/iri/src/lib.rs @@ -0,0 +1,4 @@ +//! TODO: define types and traits for handling IRIs. + +#[cfg(test)] +mod tests {}