-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 989 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (40 loc) · 989 Bytes
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
# SPDX-License-Identifier: MPL-2.0
[package]
name = "formatrix-core"
description = "Unified document AST and format converters for Formatrix Docs"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[dependencies]
# Format parsers
comrak.workspace = true
jotdown.workspace = true
orgize.workspace = true
rst_parser.workspace = true
document_tree.workspace = true
typst-syntax.workspace = true
asciidoc-parser.workspace = true
# Serialization
serde.workspace = true
serde_json.workspace = true
# Error handling
thiserror.workspace = true
# Utilities
unicode-segmentation.workspace = true
[dev-dependencies]
pretty_assertions = "1.4"
proptest = "1.5"
tempfile = "3.14"
[features]
default = ["markdown", "djot", "orgmode", "rst", "typst", "asciidoc"]
markdown = []
djot = []
orgmode = []
rst = []
typst = []
asciidoc = []
ffi = [] # Enable C FFI for Ada TUI