mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-12-23 10:11:57 +00:00
chore: remove rustyscript dependency
This commit is contained in:
parent
185a6f05b7
commit
ce822ca937
5 changed files with 77 additions and 6024 deletions
6088
Cargo.lock
generated
6088
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -4,11 +4,8 @@ version = "0.1.0"
|
|||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
rustyscript = { version = "0.12.3", features = ["node_experimental"] }
|
||||
# pin modules - https://github.com/rscarson/rustyscript/issues/399
|
||||
serde = "=1.0.219"
|
||||
serde_json = "=1.0.120"
|
||||
serde_bytes = "=0.11.15"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
iced = { version = "0.13.1", features = ["advanced", "image", "svg"] }
|
||||
reqwest = { version = "0.12.8", features = ["blocking", "rustls-tls"] }
|
||||
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "net", "sync"] }
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
use iced::Color;
|
||||
use rustyscript::serde_json::Value;
|
||||
use serde_json::Value;
|
||||
use serde::Deserialize;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ use crate::message::Message;
|
|||
use iced::Rectangle;
|
||||
use iced::futures::channel::mpsc;
|
||||
use iced::widget::scrollable;
|
||||
use rustyscript::serde_json::Value;
|
||||
use serde_json::Value;
|
||||
use std::collections::HashMap;
|
||||
use std::sync::{LazyLock, Mutex};
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ use iced::keyboard::Modifiers;
|
|||
use iced::widget::{column, container, scrollable, stack, text_input};
|
||||
use iced::{Element, Length, Subscription, Task, Theme};
|
||||
use message::Message;
|
||||
use rustyscript::serde_json::Value;
|
||||
use serde_json::Value;
|
||||
use state::State;
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue