-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
69 lines (58 loc) · 1.42 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
64
65
66
67
68
69
[package]
name = "plot_interface"
version = "0.1.3"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
"Dmytro Kryvoruchko <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/plot_interface"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/plot_interface"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/plot_interface"
description = """
Plot interface.
"""
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 = "plot_interface"
path = "src/plot/plot_interface_lib.rs"
[[test]]
name = "plot_interface_test"
path = "tests/plot/plot_interface_tests.rs"
# [lib]
# name = "plot_interface"
# path = "src/_blank/standard_lib.rs"
#
# [[test]]
# name = "plot_interface_test"
# path = "tests/_blank/tests.rs"
[[test]]
name = "plot_interface_smoke_test"
path = "tests/smoke_test.rs"
# [[example]]
# name = "plot_interface_trivial"
# path = "examples/plot_interface_trivial/src/main.rs"
[dependencies]
wplot = { workspace = true }
[dev-dependencies]
test_tools = { workspace = true }