jan/mobile-app/src-tauri/Cargo.toml
Vanalite 3f62c96cd0 feat: Init mobile app from current Tauri framework
Feat:
- Using Tauri framework by default
- Add new configuration to initiate mobile app and its command for dev
- Add dependencies needed for mobile build
Test:
- Confirm to be built successfully
2025-09-15 19:47:08 +07:00

31 lines
679 B
TOML

[package]
name = "jan-mobile"
version = "0.6.6"
description = "Jan Mobile - AI Chat Assistant"
authors = ["Jan Team"]
license = "Apache-2.0"
repository = "https://github.com/menloresearch/jan"
edition = "2021"
rust-version = "1.70"
[build-dependencies]
tauri-build = { version = "2.4.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.8.5", features = ["protocol-asset"] }
tauri-plugin-os = "2.2.1"
[[bin]]
name = "jan-mobile"
path = "src/main.rs"
[lib]
name = "app"
crate-type = ["staticlib", "cdylib", "rlib"]
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]