aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-29 15:11:17 +0100
committerdiogo464 <[email protected]>2025-06-29 15:11:17 +0100
commit5f81d08687494277ffe5f72b86d1c1b3c9341d9a (patch)
tree1e3fa417e10416287a98c7583b37b311b40e6cd7 /Cargo.toml
parentbb76625240ba60a1fc0d80d80ae0aefd56c66682 (diff)
Convert from Rust to Python project with uv support
Remove Rust-related files (Cargo.toml, Cargo.lock, src/, target/) and restructure as Python project using uv for dependency management. Update project structure to match nova-oar-mcp style with pyproject.toml, .python-version, and proper Python packaging conventions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml23
1 files changed, 0 insertions, 23 deletions
diff --git a/Cargo.toml b/Cargo.toml
deleted file mode 100644
index fbcf6ac..0000000
--- a/Cargo.toml
+++ /dev/null
@@ -1,23 +0,0 @@
1[package]
2name = "oar-p2p"
3version = "0.0.0"
4edition = "2024"
5
6[profile.release]
7strip = true
8lto = true
9codegen-units = 1
10panic = "abort"
11
12[profile.dev]
13panic = "abort"
14
15[dependencies]
16clap = { version = "4.5.40", features = ["derive", "env"] }
17color-eyre = "0.6.5"
18eyre = "0.6.12"
19serde = { version = "1.0.219", features = ["derive"] }
20serde_json = "1.0.140"
21tokio = { version = "1.45.1", features = ["full"] }
22tracing = "0.1.41"
23tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }