diff options
| author | diogo464 <[email protected]> | 2025-06-29 15:11:17 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-29 15:11:17 +0100 |
| commit | 5f81d08687494277ffe5f72b86d1c1b3c9341d9a (patch) | |
| tree | 1e3fa417e10416287a98c7583b37b311b40e6cd7 /Cargo.toml | |
| parent | bb76625240ba60a1fc0d80d80ae0aefd56c66682 (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.toml | 23 |
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] | ||
| 2 | name = "oar-p2p" | ||
| 3 | version = "0.0.0" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [profile.release] | ||
| 7 | strip = true | ||
| 8 | lto = true | ||
| 9 | codegen-units = 1 | ||
| 10 | panic = "abort" | ||
| 11 | |||
| 12 | [profile.dev] | ||
| 13 | panic = "abort" | ||
| 14 | |||
| 15 | [dependencies] | ||
| 16 | clap = { version = "4.5.40", features = ["derive", "env"] } | ||
| 17 | color-eyre = "0.6.5" | ||
| 18 | eyre = "0.6.12" | ||
| 19 | serde = { version = "1.0.219", features = ["derive"] } | ||
| 20 | serde_json = "1.0.140" | ||
| 21 | tokio = { version = "1.45.1", features = ["full"] } | ||
| 22 | tracing = "0.1.41" | ||
| 23 | tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } | ||
