mirror of
https://github.com/ruvnet/RuView
synced 2026-07-20 17:03:24 +00:00
407b46b206
Add ruvnet/midstream (AIMDS real-time inference) and ruvnet/sublinear-time-solver (sublinear optimization algorithms) as vendored dependencies under vendor/.
22 lines
329 B
Bash
22 lines
329 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Installing Midstream application..."
|
|
|
|
# Create project structure
|
|
mkdir -p src/tests
|
|
|
|
# Install hyprstream
|
|
cargo add hyprstream
|
|
|
|
# Install test dependencies
|
|
cargo add --dev mockall tokio
|
|
|
|
# Install dependencies and build project
|
|
cargo build
|
|
|
|
# Run tests
|
|
cargo test
|
|
|
|
echo "Installation complete!"
|