-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (53 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
62 lines (53 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
resolver = "2"
members = [
"crates/markdown-neuraxis-engine",
"crates/markdown-neuraxis-dioxus",
"crates/markdown-neuraxis-cli",
"crates/markdown-neuraxis-config",
"crates/markdown-neuraxis-ffi",
"crates/markdown-neuraxis-syntax",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Tim Abell"]
description = "Local-first structured thought and knowledge management tool"
license = "AGPL-3.0-only"
repository = "https://github.com/timabell/markdown-neuraxis"
[workspace.dependencies]
# Core dependencies
anyhow = "1.0"
uniffi = "0.28"
pulldown-cmark = "0.13"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
uuid = { version = "1.19", features = ["v4", "serde"] }
relative-path = { version = "2.0", features = ["serde"] }
xi-rope = "0.3"
tree-sitter = "0.26"
tree-sitter-md = "0.5"
html-escape = "0.2"
regex = "1.12"
# UI dependencies
dioxus = { version = "0.7", features = ["desktop", "mobile"] }
ratatui = "0.30"
crossterm = "0.29"
# Dev dependencies
rstest = "0.26"
insta = { version = "1.45", features = ["yaml"] }
pretty_assertions = "1.4"
tempfile = "3.24"
dioxus-ssr = "0.7"
criterion = { version = "0.8", features = ["html_reports"] }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"