-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 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
38
39
40
41
42
[package]
name = "cosy"
version = "0.1.1"
edition = "2024"
authors = ["Yusei Ito <me@yuseiito.com>"]
description = "A parser for Cosense/Scrapbox markup syntax that produces a typed AST"
license = "MIT"
repository = "https://github.com/YuseiIto/cosy"
homepage = "https://github.com/YuseiIto/cosy"
documentation = "https://docs.rs/cosy"
readme = "README.md"
keywords = ["parser", "scrapbox", "cosense", "markup", "ast"]
categories = ["parser-implementations", "text-processing"]
rust-version = "1.88"
exclude = [
"CLAUDE.md",
"AGENTS.md",
".claude/",
]
[features]
serde = ["dep:serde", "url/serde"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
mime = "0.3.17"
thiserror = "2"
mime_guess = "2.0.5"
url = "2.5.8"
winnow = "1"
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies]
clap = { version = "4.4.57", features = ["derive"] }
urlencoding = "2.1.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.149"
reqwest = { version = "0.13.1", features = ["blocking"] }
anyhow = "1.0.100"