Skip to content

Commit

Permalink
chore: rename package to respect best practices
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Aug 5, 2024
1 parent fa97e66 commit 985ec06
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [
"screenpipe-core",
"screenpipe-vision",
"screenpipe-audio",
"screenpipe-server", "external-cloud-integrations",
"screenpipe-server", "screenpipe-integrations",

]
exclude = [
Expand Down
15 changes: 0 additions & 15 deletions external-cloud-integrations/Cargo.toml

This file was deleted.

15 changes: 15 additions & 0 deletions screenpipe-integrations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "screenpipe-integrations"
version = { workspace = true }
authors = { workspace = true }
description = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[dependencies]
curl = "0.4.46"
serde_json = "1.0"
uuid = { version = "1.3", features = ["v4"] }
chrono = "0.4"
log = "0.4"
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion screenpipe-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ reqwest = { version = "0.12.5", features = ["json"] }
crossbeam = { workspace = true }

# Friend integration
external-cloud-integrations = { path = "../external-cloud-integrations" }
screenpipe-integrations = { path = "../screenpipe-integrations" }

[dev-dependencies]
tempfile = "3.3.0"
Expand Down
2 changes: 1 addition & 1 deletion screenpipe-server/src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ use crate::{DatabaseManager, VideoCapture};
use anyhow::Result;
use chrono::Utc;
use crossbeam::queue::SegQueue;
use external_cloud_integrations::friend_wearable::send_data_to_friend_wearable;
use log::{debug, error, info, warn};
use screenpipe_audio::{
create_whisper_channel, record_and_transcribe, AudioDevice, AudioInput, DeviceControl,
TranscriptionResult,
};
use screenpipe_integrations::friend_wearable::send_data_to_friend_wearable;
use screenpipe_vision::OcrEngine;
use std::collections::HashMap;
use std::path::PathBuf;
Expand Down

0 comments on commit 985ec06

Please sign in to comment.