22 lines
527 B
TOML
22 lines
527 B
TOML
[package]
|
|
name = "ctms-desktop"
|
|
version = "0.1.0"
|
|
description = "CTMS desktop client"
|
|
authors = ["Huapont"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ctms_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
time = { version = "=0.3.36", default-features = false, features = ["std", "parsing", "formatting", "macros"] }
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|