commit 3e203356f8288522697494da0e9aa3e5e7c43699 Author: Andrew Golovashevich Date: Tue Nov 25 22:44:37 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3189865 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.idea +target/ +Cargo.lock \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9538bf7 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "source-stream-0"] + path = source-stream-0 + url = https://git.landgrafhomyak.ru/Parsers/source-stream-0.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..37427f8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "number-parser-0" +version = "0.0.0" +edition = "2024" + +[dependencies] +source-stream-0 = {git = "https://git.landgrafhomyak.ru/Parsers/source-stream-0.rs"} + +[workspace] +exclude = ["source-stream-0"] + +[lints] +rust = { nonstandard_style = "allow" } \ No newline at end of file diff --git a/source-stream-0 b/source-stream-0 new file mode 160000 index 0000000..cb10fc8 --- /dev/null +++ b/source-stream-0 @@ -0,0 +1 @@ +Subproject commit cb10fc8f83288646ff0d87175e369fbfcde961a6 diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..e69de29