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
7 changes: 2 additions & 5 deletions hyperdrive/packages/file-explorer/explorer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
[dependencies]
anyhow = "1.0"
md5 = "0.7"
hyperapp_macro = "0.1.1"
process_macros = "0.1"
serde_json = "1.0"
serde_urlencoded = "0.7"
tracing = "0.1.37"
wit-bindgen = "0.42.1"

[dependencies.hyperprocess_macro]
git = "https://github.com/hyperware-ai/hyperprocess-macro"
rev = "66884c0"

[dependencies.hyperware_process_lib]
features = ["hyperapp"]
git = "https://github.com/hyperware-ai/process_lib"
rev = "4beff93"
rev = "1a6ad9d"

[dependencies.serde]
features = ["derive"]
Expand Down
3 changes: 1 addition & 2 deletions hyperdrive/packages/file-explorer/explorer/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use hyperprocess_macro::hyperprocess;
use hyperware_process_lib::hyperapp::{add_response_header, get_path, send, SaveOptions};
use hyperware_process_lib::logging::{debug, error, info, init_logging, Level};
use hyperware_process_lib::our;
Expand Down Expand Up @@ -35,7 +34,7 @@ struct FileExplorerState {
cwd: String,
}

#[hyperprocess(
#[hyperapp_macro::hyperapp(
name = "file-explorer",
ui = Some(HttpBindingConfig::default().secure_subdomain(true)),
endpoints = vec![
Expand Down
11 changes: 6 additions & 5 deletions hyperdrive/packages/spider/spider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ wit-bindgen = "0.42.1"
features = ["serde"]
version = "0.4"

[dependencies.hyperprocess_macro]
git = "https://github.com/hyperware-ai/hyperprocess-macro"
rev = "98fac21"
[dependencies.hyperapp_macro]
git = "https://github.com/hyperware-ai/hyperapp-macro"
rev = "5c7cc7a"

[dependencies.hyperware-anthropic-sdk]
git = "https://github.com/hyperware-ai/hyperware-anthropic-sdk"
rev = "607bbc6"
rev = "1fc7b0c"

[dependencies.hyperware-parse-wit]
path = "../crates/hyperware-parse-wit"

[dependencies.hyperware_process_lib]
features = ["hyperapp"]
git = "https://github.com/hyperware-ai/process_lib"
rev = "232fe25"
rev = "41f25ce"

[dependencies.serde]
features = ["derive"]
Expand All @@ -45,6 +45,7 @@ features = ["serde"]
version = "0.220.0"

[features]
public-mode = []
simulation-mode = []

[lib]
Expand Down
Loading