Skip to content

Commit a343dbc

Browse files
committed
layout for a new work-item 'term'
1 parent b498530 commit a343dbc

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

.github/CODEOWNER

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@
99
# Owners of the /dummy work-item
1010
/dummy @pchampin @Tpt # ...
1111

12+
# Owners of the /term work-item
13+
/term @pchampin # anyone else welcome, of course
14+
1215
# Owners of another work item
1316
# ...

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
members = [
44
"dummy",
5+
"term",
56
]
67
resolver = "3"
78

term/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
name = "r2c2_term"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
repository.workspace = true
7+
readme.workspace = true
8+
license-file.workspace = true
9+
keywords.workspace = true
10+
11+
[dependencies]
12+
13+
[lints]
14+
workspace = true

term/src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//! TODO
2+
//! 1. define or import simple wrapper types for building blocks
3+
//! (IRIs, language tags...)
4+
//! 2. define traits for different kinds of terms
5+
//! (Subject, Predicate, Object, GraphName)
6+
7+
#[cfg(test)]
8+
mod test {}

0 commit comments

Comments
 (0)