forked from mkrueger/icy_sixel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "sixela"
description = "A 100% rust sixel library."
version = "0.2.0-wip"
edition = "2021"
rust-version = "1.82.0"
authors = ["José Luis Cruz <joseluis@andamira.net>"]
repository = "https://github.com/andamira/sixela"
documentation = "https://docs.rs/sixela"
license = "MIT OR Apache-2.0"
include = [
"/Cargo.toml",
"/DOCS/*", "/LICENSE*",
"/src/**/*.rs", "/src/**/*.md",
]
categories = ["rendering::graphics-api", "no-std"]
keywords = ["sixel"]
publish = true
[features] # 8/300 (292 remaining), 8 visible, 0 hidden
# ==============================================================================
# environment
# ------------------------------
std = ["alloc", "devela/std"]
alloc = ["devela/alloc"]
no_std = ["devela/libm"]
#no_std = ["devela/dep_libm"]#WIP
# safety
# ------------------------------
safe = []
safest = ["devela/safe"]
unsafe = []
unsafest = ["devela/unsafe"]
# nightly
# ------------------------------
nightly = [
"nightly_doc",
] # enables all the following features:
# WAIT: [doc_cfg](https://github.com/rust-lang/rust/issues/43781)
# WAIT: [doc_notable_trait](https://github.com/rust-lang/rust/issues/45040)
nightly_doc = ["devela/nightly_doc"]
# capabilities
# ------------------------------
default = ["alloc"] # for now, almost everything depends on alloc
# The most complete versions of the documentation:
_docsrs = ["nightly", "std"]
[dependencies]
# ==============================================================================
devela = { version = "0.21.2", features = ["hashbrown"] }
#devela = { version = "0.22.0-wip", path = "../devela", features = ["hashbrown"] }#WIP
[package.metadata.docs.rs]
# ==============================================================================
no-default-features = true
features = ["_docsrs"]