diff --git a/Cargo.lock b/Cargo.lock index ed8720f..60f84b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,7 +422,7 @@ dependencies = [ [[package]] name = "demo_hornbeam_project" -version = "0.1.0" +version = "0.0.1" dependencies = [ "axum", "color-eyre", @@ -746,7 +746,7 @@ dependencies = [ [[package]] name = "hornbeam" -version = "0.1.0" +version = "0.0.1" dependencies = [ "arc-swap", "axum", @@ -758,7 +758,7 @@ dependencies = [ [[package]] name = "hornbeam_grammar" -version = "0.1.0" +version = "0.0.1" dependencies = [ "arc-interner", "insta", @@ -771,7 +771,7 @@ dependencies = [ [[package]] name = "hornbeam_interpreter" -version = "0.1.0" +version = "0.0.1" dependencies = [ "async-recursion", "async-trait", @@ -789,7 +789,7 @@ dependencies = [ [[package]] name = "hornbeam_ir" -version = "0.1.0" +version = "0.0.1" dependencies = [ "hornbeam_grammar", "html-escape", @@ -801,7 +801,7 @@ dependencies = [ [[package]] name = "hornbeam_macros" -version = "0.1.0" +version = "0.0.1" [[package]] name = "html-escape" diff --git a/demo_hornbeam_project/Cargo.toml b/demo_hornbeam_project/Cargo.toml index 7cd0741..5644809 100644 --- a/demo_hornbeam_project/Cargo.toml +++ b/demo_hornbeam_project/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "demo_hornbeam_project" -version = "0.1.0" +version = "0.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -11,5 +11,5 @@ eyre = "0.6.8" color-eyre = "0.6.2" tokio = { version = "1.25.0", features = ["full"] } tracing = "0.1.37" -hornbeam = { version = "0.1.0", path = "../hornbeam" } -tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } \ No newline at end of file +hornbeam = { version = "0.0.1", path = "../hornbeam" } +tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } diff --git a/hornbeam/Cargo.toml b/hornbeam/Cargo.toml index 05efcc6..91636b8 100644 --- a/hornbeam/Cargo.toml +++ b/hornbeam/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "hornbeam" -version = "0.1.0" +version = "0.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hornbeam_interpreter = { version = "0.1.0", path = "../hornbeam_interpreter" } +hornbeam_interpreter = { version = "0.0.1", path = "../hornbeam_interpreter" } arc-swap = "1.6.0" notify = "5.1.0" diff --git a/hornbeam_grammar/Cargo.toml b/hornbeam_grammar/Cargo.toml index 14bf9dc..b076df2 100644 --- a/hornbeam_grammar/Cargo.toml +++ b/hornbeam_grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hornbeam_grammar" -version = "0.1.0" +version = "0.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/hornbeam_interpreter/Cargo.toml b/hornbeam_interpreter/Cargo.toml index 9892d9d..7587e18 100644 --- a/hornbeam_interpreter/Cargo.toml +++ b/hornbeam_interpreter/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "hornbeam_interpreter" -version = "0.1.0" +version = "0.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hornbeam_grammar = { version = "0.1.0", path = "../hornbeam_grammar" } -hornbeam_ir = { version = "0.1.0", path = "../hornbeam_ir" } +hornbeam_grammar = { version = "0.0.1", path = "../hornbeam_grammar" } +hornbeam_ir = { version = "0.0.1", path = "../hornbeam_ir" } fluent-templates = { version = "0.8.0", optional = true } bevy_reflect = { version = "0.11.0" } diff --git a/hornbeam_ir/Cargo.toml b/hornbeam_ir/Cargo.toml index f02cb93..48d2334 100644 --- a/hornbeam_ir/Cargo.toml +++ b/hornbeam_ir/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "hornbeam_ir" -version = "0.1.0" +version = "0.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hornbeam_grammar = { version = "0.1.0", path = "../hornbeam_grammar" } +hornbeam_grammar = { version = "0.0.1", path = "../hornbeam_grammar" } thiserror = "1.0.38" serde = { version = "1.0.152", features = ["derive"] } itertools = "0.10.5" diff --git a/hornbeam_macros/Cargo.toml b/hornbeam_macros/Cargo.toml index 598195a..4685caa 100644 --- a/hornbeam_macros/Cargo.toml +++ b/hornbeam_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hornbeam_macros" -version = "0.1.0" +version = "0.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/shell.nix b/shell.nix index d97dc50..0cc94b7 100644 --- a/shell.nix +++ b/shell.nix @@ -18,6 +18,7 @@ pkgs.mkShell { pkgs.pkg-config pkgs.cargo-insta + pkgs.cargo-workspaces #pkgs.libclang # ?? ];