-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
95 lines (73 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
95 lines (73 loc) · 1.64 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
87
88
89
90
91
92
93
94
95
[package]
name = "arclang"
version = "1.0.0"
edition = "2021"
authors = ["ArcLang Contributors"]
description = "Industrial-grade Arcadia-as-Code compiler"
license = "MIT"
repository = "https://github.com/arclang/arclang"
keywords = ["arcadia", "mbse", "systems-engineering", "compiler", "capella"]
categories = ["development-tools", "compilers"]
[[bin]]
name = "arclang"
path = "src/main.rs"
[[bin]]
name = "test_explorer"
path = "test_explorer.rs"
[[bin]]
name = "test_d3"
path = "test_d3.rs"
[[bin]]
name = "test_elk"
path = "test_elk.rs"
[dependencies]
# CLI
clap = { version = "4.4", features = ["derive", "cargo"] }
colored = "2.0"
opener = "0.7"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
bincode = "1.3"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Hashing and crypto
sha2 = "0.10"
# HTTP clients
reqwest = { version = "0.11", features = ["json", "blocking"] }
# Graph algorithms
petgraph = "0.6"
# Regex
regex = "1.10"
# XML parsing
quick-xml = "0.31"
# Date/Time
chrono = { version = "0.4", features = ["serde"] }
# UUID
uuid = { version = "1.6", features = ["v4", "serde"] }
# Threading
rayon = "1.8"
# Configuration
config = "0.13"
# Terminal UI
indicatif = "0.17"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3.8"
mockall = "0.12"
proptest = "1.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.bench]
inherits = "release"