Skip to content

Commit 9b41733

Browse files
authored
Setup assistant (#34)
First naive implementation of the setup assistant for issue #33
1 parent 4dab53f commit 9b41733

33 files changed

+13798
-5505
lines changed

Cargo.lock

Lines changed: 218 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ version = "0.1.0"
44
edition = "2024"
55
repository = "https://github.com/sapessi/ocypode"
66

7+
[[bin]]
8+
name = "ocypode"
9+
path = "src/main.rs"
10+
11+
[lib]
12+
name = "ocypode"
13+
path = "src/lib.rs"
14+
715
[dependencies]
816
clap = { version = "4.5.29", features = [ "derive" ] }
917
ctrlc = "3.4.5"
@@ -29,6 +37,11 @@ egui-dropdown = "0.13.0"
2937
[dev-dependencies]
3038
proptest = "1.5.0"
3139
tempfile = "3.14.0"
40+
criterion = { version = "0.5", features = ["html_reports"] }
41+
42+
[[bench]]
43+
name = "telemetry_performance"
44+
harness = false
3245

3346
# The profile that 'dist' will build with
3447
[profile.dist]

0 commit comments

Comments
 (0)