-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.toml
72 lines (58 loc) · 1.78 KB
/
Makefile.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
70
71
72
[tasks.test_no_std]
command = 'cargo'
args = ['test', '--lib', '--tests', '--no-default-features']
[tasks.test_alloc]
command = 'cargo'
args = ['test', '--lib', '--tests', '--no-default-features', '--features', 'alloc']
[tasks.test_std]
command = 'cargo'
args = ['test', '--lib', '--tests', '--no-default-features', '--features', 'std']
[tasks.test_no_std-nightly]
command = 'cargo'
args = ['test', '--lib', '--tests', '--no-default-features', '--features', 'nightly']
[tasks.test_alloc-nightly]
command = 'cargo'
args = ['test', '--lib', '--tests', '--no-default-features', '--features', 'alloc,nightly']
[tasks.test_std-nightly]
command = 'cargo'
args = ['test', '--lib', '--tests', '--no-default-features', '--features', 'std,nightly']
[tasks.test_doc]
command = 'cargo'
args = ['test', '--doc', '--all-features']
[tasks.test_all]
dependencies = [
'test_doc',
'test_no_std',
'test_alloc',
'test_std',
'test_no_std-nightly',
'test_alloc-nightly',
'test_std-nightly',
]
[tasks.check_no_std]
command = 'cargo'
args = ['clippy', '--no-default-features']
[tasks.check_alloc]
command = 'cargo'
args = ['clippy', '--no-default-features', '--features', 'alloc']
[tasks.check_std]
command = 'cargo'
args = ['clippy', '--no-default-features', '--features', 'std']
[tasks.check_no_std-nightly]
command = 'cargo'
args = ['clippy', '--no-default-features', '--features', 'nightly']
[tasks.check_alloc-nightly]
command = 'cargo'
args = ['clippy', '--no-default-features', '--features', 'alloc,nightly']
[tasks.check_std-nightly]
command = 'cargo'
args = ['clippy', '--no-default-features', '--features', 'std,nightly']
[tasks.check_all]
dependencies = [
'check_no_std-nightly',
'check_alloc-nightly',
'check_std-nightly',
'check_no_std',
'check_alloc',
'check_std',
]