Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ color-eyre = { version = "0.6", features = ["capture-spantrace"] }
dirs = "5.0"
fs-err = "2.11"
hex = "0.4"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib.git", rev = "9ac9e51" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib.git", rev = "2a526c8" }
nix = { version = "0.27", features = ["process", "signal", "term"] }
regex = "1"
reqwest = { version = "0.12", features = ["json"] }
Expand All @@ -65,7 +65,7 @@ tracing-appender = "0.2"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "std"] }
walkdir = "2.4"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"
zip = "0.6"

[workspace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ interface chat {

world chat-template-dot-os-v0 {
import chat;
include process;
include process-v1;
}
2 changes: 1 addition & 1 deletion src/new/templates/javascript/no-ui/chat/pkg/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys"
"http-server:distro:sys"
],
"grant_capabilities": [],
"public": true
Expand Down
4 changes: 2 additions & 2 deletions src/new/templates/javascript/no-ui/chat/send/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "84b3d84" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
world chat-test-template-dot-os-v0 {
import chat;
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ publish = false
[dependencies]
anyhow = "1.0"
bincode = "1.3"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", tag = "v0.8.3" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"chat:template.os",
"tester:sys"
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/javascript/no-ui/echo/pkg/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys"
"http-server:distro:sys"
],
"grant_capabilities": [],
"public": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
world echo-test-template-dot-os-v0 {
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ publish = false
[dependencies]
anyhow = "1.0"
bincode = "1.3"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", tag = "v0.8.3" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"tester:sys"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys"
"http-server:distro:sys"
],
"grant_capabilities": [],
"public": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
world fibonacci-test-template-dot-os-v0 {
import fibonacci;
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", tag = "v0.8.3" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"fibonacci:template.os",
"tester:sys"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ interface chat {

world chat-template-dot-os-v0 {
import chat;
include process;
include process-v1;
}
2 changes: 1 addition & 1 deletion src/new/templates/python/no-ui/chat/pkg/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys"
"http-server:distro:sys"
],
"grant_capabilities": [],
"public": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
world chat-test-template-dot-os-v0 {
import chat;
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ publish = false
[dependencies]
anyhow = "1.0"
bincode = "1.3"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", tag = "v0.8.3" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"chat:template.os",
"tester:sys"
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/python/no-ui/echo/pkg/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys"
"http-server:distro:sys"
],
"grant_capabilities": [],
"public": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
world echo-test-template-dot-os-v0 {
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ publish = false
[dependencies]
anyhow = "1.0"
bincode = "1.3"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", tag = "v0.8.3" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"tester:sys"
]
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/python/no-ui/fibonacci/pkg/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys"
"http-server:distro:sys"
],
"grant_capabilities": [],
"public": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
world fibonacci-test-template-dot-os-v0 {
import fibonacci;
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", tag = "v0.8.3" }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"fibonacci:template.os",
"tester:sys"
Expand Down
4 changes: 2 additions & 2 deletions src/new/templates/rust/no-ui/blank/blank/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ edition = "2021"
publish = false

[dependencies]
kinode_process_lib = "0.9.2"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/rust/no-ui/blank/blank/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use kinode_process_lib::{await_message, call_init, println, Address};

wit_bindgen::generate!({
path: "target/wit",
world: "process-v0",
world: "process-v1",
});

call_init!(init);
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/rust/no-ui/blank/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": []
},
"external_url": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ interface chat {

world chat-template-dot-os-v0 {
import chat;
include process-v0;
include process-v1;
}
4 changes: 2 additions & 2 deletions src/new/templates/rust/no-ui/chat/chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { version = "0.9.6", features = ["logging"] }
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8", features = ["logging"] }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/rust/no-ui/chat/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": []
},
"external_url": "",
Expand Down
2 changes: 1 addition & 1 deletion src/new/templates/rust/no-ui/chat/pkg/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"on_exit": "Restart",
"request_networking": true,
"request_capabilities": [
"http_server:distro:sys",
"http-server:distro:sys",
"vfs:distro:sys"
],
"grant_capabilities": [],
Expand Down
4 changes: 2 additions & 2 deletions src/new/templates/rust/no-ui/chat/send/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = "0.9.6"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
world chat-test-template-dot-os-v0 {
import chat;
import tester;
include process-v0;
include process-v1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ publish = false
[dependencies]
anyhow = "1.0"
bincode = "1.3"
kinode_process_lib = "0.9.2"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "2a526c8" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
wit-bindgen = "0.24.0"
wit-bindgen = "0.36.0"

[lib]
crate-type = ["cdylib"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"code_hashes": {
"0.1.0": ""
},
"wit_version": 0,
"wit_version": 1,
"dependencies": [
"chat:template.os",
"tester:sys"
Expand Down
Loading
Loading