Skip to content

Commit 4ba02a7

Browse files
Merge pull request #72 from PromptExecution/feat/lfmf-ontology-tools
feat: add lfmf and ontology tooling
2 parents ab2ffa9 + 63e3200 commit 4ba02a7

8 files changed

Lines changed: 894 additions & 5 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ members = [
1111
"crates/arc-kit-au",
1212
"crates/datum",
1313
"crates/b00t-iface",
14-
"xtask", "crates/rotel-visual",
14+
"xtask",
15+
"crates/rotel-visual",
16+
"crates/ontology-extractor",
17+
"crates/lfmf-counter",
1518
]
1619
resolver = "2"
1720

crates/lfmf-counter/Cargo.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[package]
2+
name = "lfmf-counter"
3+
version.workspace = true
4+
edition.workspace = true
5+
description = "LFMF lesson counter with $🦨++ and $🐛++ support"
6+
license.workspace = true
7+
8+
[dependencies]
9+
anyhow = { workspace = true }
10+
serde = { workspace = true, features = ["derive"] }
11+
serde_json = { workspace = true }
12+
tokio = { workspace = true, features = ["full"] }
13+
chrono = { workspace = true }
14+
clap = { version = "4", features = ["derive"] }
15+
16+
[dev-dependencies]
17+
tokio = { workspace = true, features = ["full", "test-util"] }
18+
19+
[lib]
20+
path = "src/lib.rs"
21+
22+
[[bin]]
23+
name = "lfmf-stats"
24+
path = "src/main.rs"
25+
26+
[lints]
27+
workspace = true

0 commit comments

Comments
 (0)