-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
52 lines (43 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "embedded-text"
version = "0.7.2"
license = "MIT"
description = "TextBox for embedded-graphics"
repository = "https://github.com/embedded-graphics/embedded-text"
authors = ["Dániel Buga <[email protected]>"]
keywords = ["embedded-graphics", "textbox", "text"]
categories = ["no-std", "embedded", "graphics"]
edition = "2021"
rust-version = "1.61"
exclude = [
".gitignore",
".github/",
]
[features]
default = []
plugin = []
ansi = ["ansi-parser"]
[[example]]
name = "interactive-editor"
required-features = ["plugin"]
[[example]]
name = "plugin"
required-features = ["plugin"]
[[example]]
name = "plugin-ansi"
required-features = ["ansi"]
[[example]]
name = "special-characters-tabs"
required-features = ["ansi"]
[[example]]
name = "styles-plugin"
required-features = ["plugin"]
[dependencies]
az = "1.1"
embedded-graphics = "0.8.0"
ansi-parser = { version = "0.8.0", default-features = false, optional = true }
object-chain = "0.1"
[dev-dependencies]
embedded-graphics-simulator = "0.5.0"
sdl2 = "0.35.2"
rayon-core = "=1.11"