aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-09 14:24:25 +0100
committerdiogo464 <[email protected]>2025-07-09 14:24:25 +0100
commita5178fbb0bde3ff9f863ef0cca48748cb993390a (patch)
tree9448cd051c4909f8fb4e1afaff1b9dda3278a5b2 /Cargo.toml
parent8018cd7a378baee5c5e1fab85bba2592c9244c72 (diff)
rust init snapshot
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..86d95c8
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,15 @@
1[package]
2name = "oar-p2p-net"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7clap = { version = "4.5.40", features = ["derive", "env"] }
8color-eyre = "0.6.5"
9eyre = "0.6.12"
10serde = { version = "1.0.219", features = ["derive"] }
11serde_json = "1.0.140"
12thiserror = "2.0.12"
13tokio = { version = "1.46.1", features = ["full"] }
14tracing = "0.1.41"
15tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }