-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 739 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
[package]
name = "protextinator"
version = "0.4.0"
edition = "2021"
description = "Text management, made simple"
keywords = ["text", "rendering", "gui", "graphics", "image"]
categories = ["text-processing", "text-editors"]
authors = ["Anton Suprunchuk <anton.suprunchuk@gmail.com>"]
license = "Apache-2.0/MIT"
repository = "https://github.com/antouhou/protextinator"
documentation = "https://docs.rs/protextinator/"
readme = "README.md"
[features]
default = []
serialization = ["dep:serde"]
[dependencies]
cosmic-text = "0.14"
ahash = "0.8.12"
smol_str = "0.3"
serde = { version = "1.0.219", features = ["derive"], optional = true }
[dev-dependencies]
grafo = "0.9"
winit = "0.30"
futures = "0.3"
env_logger = "0.11"
serde_json = "1.0"