commit 27ec3570369ff050b914cf29edcb703fe9fcafbd Author: Andrew Golovashevich Date: Mon Dec 29 15:10:09 2025 +0300 Initial commit diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..d4fa5d9 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[registries] +landgrafhomyak = { index = "sparse+https://cargo.landgrafhomyak.ru/" } \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b5488f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.idea/ +Cargo.lock +target/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..fa4c69e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "binary-tree-utilities-0"] + path = binary-tree-utilities-0 + url = https://git.landgrafhomyak.ru/Algorithms/binary-tree-utilities-0.rs +[submodule "binary-tree-core-0"] + path = binary-tree-core-0 + url = https://git.landgrafhomyak.ru/Algorithms/binary-tree-core-0.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..fdfce56 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "red-black-tree-0" +edition = "2024" + +[lints] +rust = { nonstandard_style = "allow" } + +[dependencies] +binary-tree-core-0 = { version = "0.0.0", registry = "landgrafhomyak" } + +[patch.landgrafhomyak] +binary-tree-core-0 = { path = "binary-tree-core-0" } diff --git a/binary-tree-core-0 b/binary-tree-core-0 new file mode 160000 index 0000000..58be1f0 --- /dev/null +++ b/binary-tree-core-0 @@ -0,0 +1 @@ +Subproject commit 58be1f002339ddf6d56f2c38fea830f67a59dc9c