[package] name = "app" version = "0.1.0" description = "A Tauri App" authors = ["you"] license = "" repository = "" edition = "2021" rust-version = "1.70" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "app_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] tauri-build = { version = "2.0.0-beta.1", features = [] } [dependencies] serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } tauri = { version = "2.0.0-beta.2", features = [] } cozo = { version = "0.7.5", features = ["storage-rocksdb"] } dirs = "5.0.1" eyre = "0.6.12" miette = { version = "5.10.0", features = ["backtrace", "fancy", "is-terminal", "serde"] } [features] # this feature is used for production builds or when `devUrl` points to the filesystem # DO NOT REMOVE!! custom-protocol = [ "tauri/custom-protocol" ]