diff options
| author | diogo464 <[email protected]> | 2025-07-09 14:24:25 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-07-09 14:24:25 +0100 |
| commit | a5178fbb0bde3ff9f863ef0cca48748cb993390a (patch) | |
| tree | 9448cd051c4909f8fb4e1afaff1b9dda3278a5b2 /Cargo.toml | |
| parent | 8018cd7a378baee5c5e1fab85bba2592c9244c72 (diff) | |
rust init snapshot
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 15 |
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] | ||
| 2 | name = "oar-p2p-net" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [dependencies] | ||
| 7 | clap = { version = "4.5.40", features = ["derive", "env"] } | ||
| 8 | color-eyre = "0.6.5" | ||
| 9 | eyre = "0.6.12" | ||
| 10 | serde = { version = "1.0.219", features = ["derive"] } | ||
| 11 | serde_json = "1.0.140" | ||
| 12 | thiserror = "2.0.12" | ||
| 13 | tokio = { version = "1.46.1", features = ["full"] } | ||
| 14 | tracing = "0.1.41" | ||
| 15 | tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } | ||
