Skip to content

Commit a42005b

Browse files
committed
update kvs error mod
1 parent 178ce91 commit a42005b

File tree

12 files changed

+301
-98
lines changed

12 files changed

+301
-98
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,13 @@ clap = "2.33.0"
1212
ansi_term = "0.12.1"
1313
lazy_static = "1.4.0"
1414
chrono = "0.4.13"
15+
16+
[workspace]
17+
members = [
18+
"cookbooktest",
19+
"toml2json"
20+
]
21+
22+
exclude = [
23+
"src/notes/kvs"
24+
]

cookbooktest/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "cookbooktest"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]

cookbooktest/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)