Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: fix backend and deserialize object_info correctly for querying … #30

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
1,478 changes: 1,058 additions & 420 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
[package]
name = "kira"
version = "0.1.0"
authors = ["IGI-111 <igi-111@protonmail.com>"]
authors = ["IGI-111 <igi-111@protonmail.com>", "Valerian Garleanu <valerian@dusklabs.io>"]
edition = "2021"
build = "build.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "0.1.80"
ezsockets = "0.6.2"
image = "0.25.1"
indexmap = { version = "2.2.6", features = ["serde"] }
native-dialog = "0.7.0"
reqwest = { version = "0.12.4", features = ["blocking", "json"] }
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
serde_json = { version = "1.0.116", features = ["preserve_order", "indexmap"] }
serde_path_to_error = "0.1.16"
simsearch = "0.2.5"
slint = { version = "1.5.1", features = [ "std", "renderer-femtovg", "renderer-software", "accessibility", "compat-1-2", "backend-winit" ], default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }

[build-dependencies]
slint-build = "1.5.1"
Loading
Loading