Skip to content

Commit

Permalink
ci: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nick1udwig committed Dec 30, 2024
1 parent 6a2d9ea commit ccdcedf
Show file tree
Hide file tree
Showing 45 changed files with 5,192 additions and 4,005 deletions.
2 changes: 1 addition & 1 deletion code/capabilities/contacts-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
kinode_process_lib = "0.9.3"
kinode_process_lib = "0.10.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
Expand Down
2 changes: 1 addition & 1 deletion code/capabilities/contacts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
simulation-mode = []

[dependencies]
kinode_process_lib = "0.9.3"
kinode_process_lib = "0.10.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.24.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ test = []

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = "0.10.1"
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
4 changes: 2 additions & 2 deletions code/chat-with-file-transfer/download/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = "0.10.1"
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
2 changes: 1 addition & 1 deletion code/chat-with-file-transfer/send/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
kinode_process_lib = "0.10.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
bincode = "1.3"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = "0.10.1"
process_macros = "0.1.0"
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions code/file-transfer/download/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = "0.10.1"
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
4 changes: 2 additions & 2 deletions code/file-transfer/file-transfer-worker-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = "0.10.1"
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
4 changes: 2 additions & 2 deletions code/file-transfer/file-transfer-worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ publish = false
[dependencies]
anyhow = "1.0"
bincode = "1.3.3"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c", features = ["logging"] }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = { version = "0.10.1", features = ["logging"] }
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
4 changes: 2 additions & 2 deletions code/file-transfer/file-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c", features = ["logging"] }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = { version = "0.10.1", features = ["logging"] }
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
4 changes: 2 additions & 2 deletions code/file-transfer/list-files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[dependencies]
anyhow = "1.0"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" }
kinode_process_lib = "0.10.1"
process_macros = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
2 changes: 1 addition & 1 deletion code/http-client/http-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
kinode_process_lib = "0.10.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2"
Expand Down
2 changes: 1 addition & 1 deletion code/http-server/http-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
anyhow = "1"
kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "0666d2c" }
kinode_process_lib = "0.10.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
Expand Down
Loading

0 comments on commit ccdcedf

Please sign in to comment.