From 07f8c0a5e732bfb13768b9c9ae6a5c4be941e1fc Mon Sep 17 00:00:00 2001 From: M Alghazwi Date: Tue, 17 Jun 2025 14:09:35 +0200 Subject: [PATCH] initialize repository --- .gitignore | 1 + .idea/.gitignore | 5 +++++ .idea/dynamic-data-experiments.iml | 11 +++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ Cargo.lock | 7 +++++++ Cargo.toml | 9 +++++++++ LICENSE.md | 6 ++++++ README.md | 5 +++++ src/lib.rs | 0 10 files changed, 58 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/dynamic-data-experiments.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 src/lib.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/dynamic-data-experiments.iml b/.idea/dynamic-data-experiments.iml new file mode 100644 index 0000000..cf84ae4 --- /dev/null +++ b/.idea/dynamic-data-experiments.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..d687bc3 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..b1d252e --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "dynamic-data-experiments" +version = "1.0.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1fee4c6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "dynamic-data-experiments" +description = "Experiments to support dynamic data for Codex" +authors = ["Mohammed Alghazwi "] +readme = "README.md" +version = "1.0.0" +edition = "2024" + +[dependencies] diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..1185acd --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,6 @@ +All crates of this repo are licensed under either of + +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) + +at your option. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..0eec4f6 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +Dynamic Data Experiments +================================ + +**WARNING**: This repository contains work-in-progress prototypes, and has not received careful code review. It is NOT ready for production use. + diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..e69de29