-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (33 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "scriptty"
version = "0.10.0"
description = "Offline screenwriting for Malayalam and English writers"
authors = ["Hrishikesh Bhaskaran"]
license = "MIT"
repository = "https://github.com/stultus/scriptty"
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "scriptty_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.5.6", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.11.2", features = [] }
tauri-plugin-log = "2"
tauri-plugin-dialog = "2"
typst = "0.14"
typst-pdf = "0.14"
chrono = "0.4"
comemo = "0.5"
tauri-plugin-fs = "2"
tauri-plugin-opener = "2.5.4"
tauri-plugin-deep-link = "2.4.9"
# Pure-Rust XML pull-parser (MIT). Used by the Final Draft (.fdx) importer
# in `screenplay::fdx_import` — `quick-xml` handles BOM, entity decoding,
# and whitespace per the XML 1.0 spec, which we don't want to re-implement.
quick-xml = "0.39"