[package]
edition = "2021"
name = "easyeditor"
version = "1.6.6"
authors = ["Ricardo Wagemaker <wagemra@gmail.com>"]
build = "build.rs"
include = [
"src/**/*",
"gen/**/*",
"capabilities/**/*",
"icons/**/*",
"build.rs",
"Cargo.toml",
"tauri.conf.json",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easy Markdown Editor"
readme = "README.md"
license = "MIT"
repository = "https://github.com/gcclinux/Easyeditor"
[lib]
name = "easyeditor_lib"
crate-type = [
"staticlib",
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "easyeditor"
path = "src/main.rs"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2"
features = ["devtools"]
[dependencies.tauri-plugin-http]
version = "2.5.5"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[build-dependencies.tauri-build]
version = "2"
features = []
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.tauri-plugin-dialog]
version = "2.6"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.tauri-plugin-fs]
version = "2"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.tauri-plugin-shell]
version = "2"