panorama2/src-tauri/Cargo.toml

33 lines
886 B
TOML
Raw Normal View History

2023-11-13 18:04:06 +00:00
[package]
2024-02-08 06:03:29 +00:00
name = "app"
version = "0.1.0"
2023-11-13 18:04:06 +00:00
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
2024-02-08 06:03:29 +00:00
rust-version = "1.70"
2023-11-13 18:04:06 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
2024-02-08 06:03:29 +00:00
name = "app_lib"
2023-11-13 18:04:06 +00:00
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
2024-02-08 06:03:29 +00:00
tauri-build = { version = "2.0.0-beta.1", features = [] }
2023-11-13 18:04:06 +00:00
[dependencies]
serde_json = "1.0"
2024-02-08 06:03:29 +00:00
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.0.0-beta.2", features = [] }
2024-02-08 05:09:11 +00:00
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"] }
2023-11-13 18:04:06 +00:00
[features]
2024-02-08 06:03:29 +00:00
# this feature is used for production builds or when `devUrl` points to the filesystem
2023-11-13 18:04:06 +00:00
# DO NOT REMOVE!!
2024-02-08 06:03:29 +00:00
custom-protocol = [ "tauri/custom-protocol" ]