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
|
[tasks.fmt]
args = ["fmt"]
command = "cargo"
toolchain = "nightly"
[tasks.check]
args = ["check"]
command = "cargo"
toolchain = "nightly"
[tasks.clippy]
args = ["clippy"]
command = "cargo"
toolchain = "nightly"
[tasks.checkf]
dependencies = ["fmt", "check"]
[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
[tasks.genkey]
command = "openssl"
args = [
"req",
"-new",
"-subj",
"/CN=localhost",
"-x509",
"-newkey",
"ec",
"-pkeyopt",
"ec_paramgen_curve:prime256v1",
"-days",
"365",
"-nodes",
"-out",
"windmark_public.pem",
"-keyout",
"windmark_private.pem",
"-inform",
"pem",
]
[tasks.docs]
workspace = false
toolchain = "nightly"
command = "cargo"
args = ["doc", "--open", "--no-deps"]
[tasks.example]
command = "cargo"
args = ["run", "--example", "${@}", "--all-features"]
|