Skip to content

Commit 17e5eec

Browse files
authored
Merge pull request #313 from hyperware-ai/develop
develop 2.1.0
2 parents 81ca2ef + 35c4d6a commit 17e5eec

34 files changed

Lines changed: 3496 additions & 192 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ src/new/includes.rs
55
src/new/templates/**/Cargo.lock
66
src/new/templates/**/*.wasm
77
src/new/templates/**/*.zip
8+
**/.DS_Store

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kit"
33
authors = ["Sybil Technologies AG"]
4-
version = "2.0.0"
4+
version = "3.0.0"
55
edition = "2021"
66
description = "Development toolkit for Hyperware"
77
homepage = "https://hyperware.ai"
@@ -52,8 +52,7 @@ semver = "1.0"
5252
serde = { version = "1.0", features = ["derive"] }
5353
serde_json = "1.0"
5454
sha2 = "0.10.8"
55-
syn = { version = "2.0", features = ["full", "visit", "extra-traits"] }
56-
#syn = { version = "2.0", features = ["full", "visit"] }
55+
syn = { version = "2.0", features = ["full", "visit", "parsing", "extra-traits"] }
5756
thiserror = "1.0"
5857
tokio = { version = "1.28", features = [
5958
"macros",

build.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ fn visit_dirs(dir: &Path, output_buffer: &mut Vec<u8>) -> io::Result<()> {
5050
let path = entry.path();
5151
if path.is_dir() {
5252
let dir_name = path.file_name().and_then(|s| s.to_str());
53-
if dir_name == Some("home") || dir_name == Some("target") {
53+
if dir_name == Some("home")
54+
|| dir_name == Some("target")
55+
|| dir_name == Some(".mypy_cache")
56+
{
5457
continue;
5558
}
5659
visit_dirs(&path, output_buffer)?;
@@ -106,6 +109,9 @@ fn add_branch_name(repo: &git2::Repository) -> anyhow::Result<()> {
106109
}
107110

108111
fn main() -> anyhow::Result<()> {
112+
// Always run this script
113+
println!("cargo:rerun-if-changed=NULL");
114+
109115
make_new_includes()?;
110116

111117
// write version info into binary

src/boot_fake_node/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ pub fn run_runtime(
405405
format!("{port}"),
406406
"--verbosity".into(),
407407
format!("{verbosity}"),
408+
"--expose-local".into(),
408409
];
409410

410411
if !args.is_empty() {

0 commit comments

Comments
 (0)