Skip to content

Commit 48062b8

Browse files
committed
feature(mithril-network-config): initialize the new crate
1 parent 71c803f commit 48062b8

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ members = [
1818
"internal/mithril-doc",
1919
"internal/mithril-doc-derive",
2020
"internal/mithril-era",
21-
"internal/mithril-metric",
21+
"internal/mithril-metric",
22+
"internal/mithril-network-config",
2223
"internal/mithril-persistence",
2324
"internal/mithril-resource-pool",
2425
"internal/mithril-ticker",
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "mithril-network-config"
3+
version = "0.1.0"
4+
description = "Common services to access data through the mithril network
5+
authors = { workspace = true }
6+
edition = { workspace = true }
7+
homepage = { workspace = true }
8+
license = { workspace = true }
9+
repository = { workspace = true }
10+
11+
[dependencies]
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)