-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (72 loc) · 1.8 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (72 loc) · 1.8 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[workspace]
members = [
"crates/sldo-common",
"crates/sldo-research",
"crates/sldo-install",
"xtasks/sast-verify",
]
resolver = "2"
[workspace.package]
version = "0.1.3"
edition = "2021"
rust-version = "1.75"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/kerberosmansour/SunLitOrchestra"
homepage = "https://github.com/kerberosmansour/SunLitOrchestra"
authors = ["Sherif Mansour <13433538+kerberosmansour@users.noreply.github.com>"]
readme = "README.md"
[workspace.dependencies]
clap = { version = "4", features = ["derive"] }
anyhow = "1"
thiserror = "2"
colored = "3"
regex = "1"
chrono = "0.4"
which = "8"
serde = { version = "1", features = ["derive"] }
serde_yaml_ng = "0.10"
serde_json = "1"
tempfile = "3"
pulldown-cmark = { version = "0.13", default-features = false }
# Root package hosts workspace-level E2E / integration tests.
[package]
name = "sunlit-orchestra-tests"
version = "0.1.0"
edition = "2021"
publish = false
[dev-dependencies]
sldo-common = { path = "crates/sldo-common" }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
dotenvy = "0.15"
base64 = "0.22"
[[test]]
name = "e2e_common_m2"
path = "tests/e2e_common_m2.rs"
[[test]]
name = "e2e_research_m1"
path = "tests/e2e_research_m1.rs"
[[test]]
name = "e2e_research_m2"
path = "tests/e2e_research_m2.rs"
[[test]]
name = "e2e_research_m3"
path = "tests/e2e_research_m3.rs"
[[test]]
name = "e2e_research_m4"
path = "tests/e2e_research_m4.rs"
[[test]]
name = "e2e_research_m5"
path = "tests/e2e_research_m5.rs"
[[test]]
name = "e2e_research_m6"
path = "tests/e2e_research_m6.rs"
[[test]]
name = "e2e_research_m7"
path = "tests/e2e_research_m7.rs"
[[test]]
name = "e2e_sast_rulegen_a_m2"
path = "tests/e2e_sast_rulegen_a_m2.rs"
[[test]]
name = "e2e_sast_rulegen_a_m3"
path = "tests/e2e_sast_rulegen_a_m3.rs"