From 2a00fcb303f5904740951c0190fcc332d90e2adc Mon Sep 17 00:00:00 2001 From: Colin FRIZOT Date: Fri, 6 Jan 2023 16:54:59 +0100 Subject: [PATCH] Ajoute le "kind" dans les fichiers manifestes --- guess-mime-type/oki.toml | 1 + linked-list/oki.toml | 2 ++ mths/oki.toml | 1 + shell-escape/oki.toml | 1 + static-string-builder/oki.toml | 1 + 5 files changed, 6 insertions(+) diff --git a/guess-mime-type/oki.toml b/guess-mime-type/oki.toml index 7e1bd03..d7da1b4 100644 --- a/guess-mime-type/oki.toml +++ b/guess-mime-type/oki.toml @@ -1,6 +1,7 @@ [package] name = "guess-mime-type" version = "0.1.0" +kind = "c" description = "Guess mime type from a filename" license = "MIT" include = ["src", "Makefile"] diff --git a/linked-list/oki.toml b/linked-list/oki.toml index 0ca5cd0..a391147 100644 --- a/linked-list/oki.toml +++ b/linked-list/oki.toml @@ -1,10 +1,12 @@ [package] name = "linked-list" version = "0.0.1" +kind = "c" description = "Minimalist simple linked list" license = "MIT" include = ["src", "Makefile"] + [lib.c] build-static = "make build/linkedList.a" static-link = "build/linkedList.a" diff --git a/mths/oki.toml b/mths/oki.toml index a3b69d6..6456130 100644 --- a/mths/oki.toml +++ b/mths/oki.toml @@ -1,6 +1,7 @@ [package] name = "mths" version = "0.2.0" +kind = "c" description = "Numbers related helper macros" license = "MIT" include = ["src", "Makefile"] diff --git a/shell-escape/oki.toml b/shell-escape/oki.toml index bbf75df..a3a00d7 100644 --- a/shell-escape/oki.toml +++ b/shell-escape/oki.toml @@ -1,6 +1,7 @@ [package] name = "shell-escape" version = "0.1.0" +kind = "c" description = "Escape shell characters" license = "MIT" include = ["src", "Makefile"] diff --git a/static-string-builder/oki.toml b/static-string-builder/oki.toml index 8706f7f..16ec866 100644 --- a/static-string-builder/oki.toml +++ b/static-string-builder/oki.toml @@ -1,6 +1,7 @@ [package] name = "static-string-builder" version = "0.1.1" +kind = "c" description = "Global string builder" license = "MIT" include = ["src", "Makefile"]