-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 724 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
[workspace]
members = [
"crates/marknest",
"crates/marknest-core",
"crates/marknest-server",
"crates/marknest-wasm",
]
resolver = "2"
[workspace.package]
edition = "2024"
license = "MIT"
version = "0.1.1"
repository = "https://github.com/developer0hye/marknest"
homepage = "https://github.com/developer0hye/marknest"
[workspace.dependencies]
ammonia = "4.1.2"
emojis = "0.6.4"
marknest-core = { version = "0.1.1", path = "crates/marknest-core" }
marknest = { version = "0.1.1", path = "crates/marknest" }
pulldown-cmark = "0.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.17"
toml = "0.8"
zip = { version = "2.2", default-features = false, features = ["deflate"] }