mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
23 lines
531 B
TOML
23 lines
531 B
TOML
[package]
|
|
name = "learn-anything"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "learn_anything_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-rc", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0.0-rc", features = [] }
|
|
tauri-plugin-shell = "2.0.0-rc"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|