forked from Wandalen/wTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (50 loc) · 1.26 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
[package]
name = "include_md"
version = "0.1.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <wandalen@obox.systems>",
"Dmytro Kryvoruchko <dmytro.kr@obox.systems>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/include_md"
repository = "https://github.com/Wandalen/wTools/tree/master/module/move/include_md"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/move/include_md"
description = """
Include markdown file or its section.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]
[lints]
workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
include = [
"/rust/impl/_blank",
"/Cargo.toml",
"/Readme.md",
"/License",
]
[features]
default = [ "enabled" ]
full = [ "enabled" ]
no_std = []
use_alloc = [ "no_std" ]
enabled = []
[lib]
name = "include_md"
path = "src/_blank/standard_lib.rs"
# [[test]]
# name = "include_md_test"
# path = "tests/include_md/include_md_tests.rs"
# [[test]]
# name = "include_md_smoke_test"
# path = "tests/_integration_test/smoke_test.rs"
# [[example]]
# name = "include_md_trivial"
# path = "sample/move/include_md_trivial/src/main.rs"
[dependencies]
[dev-dependencies]
test_tools = { workspace = true }