-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
31 lines (28 loc) · 873 Bytes
/
Cargo.toml
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
[workspace]
members = ["src-tauri", "frontend", "ubi-crates/*"]
[workspace.package]
version = "0.4.0"
authors = ["Stephen Power"]
description = "A cross-platform markdown editor."
license = "GPL"
edition = "2021"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "z"
[workspace.dependencies]
ron = "0.8"
serde = { version = "1.0.154", features = ["derive"] }
log = { version = "0.4", features = ["release_max_level_info"] }
walkdir = "2.3.2"
thiserror = "1.0.38"
dirs = "5.0.0"
getrandom = { version = "0.2.8", features = ["js"] }
markdown = "1.0.0-alpha.10"
urlencoding = "2.1.2"
config = { path = "./ubi-crates/config" }
error = { path = "./ubi-crates/error" }
md = { path = "./ubi-crates/md" }
mdtg = { path = "./ubi-crates/mdtg" }
tauri-sys = { git = "https://github.com/opensourcecheemsburgers/tauri-sys" , features=["tauri", "clipboard"] }