Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified entangle/.chainlink/issues.db
Binary file not shown.
2 changes: 1 addition & 1 deletion entangle/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion entangle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "entangle"
name = "entangle-mirror"
version = "0.1.0-alpha.1"
edition = "2024"
description = "Easy setup for mirroring GitHub repos to Tangled.org in one command"
Expand All @@ -10,6 +10,13 @@ readme = "README.md"
keywords = ["git", "tangled", "mirror", "forge", "atproto"]
categories = ["command-line-utilities", "development-tools"]

# Keep the installed binary named `entangle` even though the crates.io package
# is `entangle-mirror` (the name `entangle` was already taken on crates.io).
# Users run `cargo install entangle-mirror` and get the `entangle` command.
[[bin]]
name = "entangle"
path = "src/main.rs"

[dependencies]
# Argument parsing — derive macros for declarative CLI definition
clap = { version = "4", features = ["derive"] }
Expand Down
8 changes: 7 additions & 1 deletion entangle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ entangle shove # first-time push to both forges

## Installation

entangle is not yet published to crates.io. Install directly from source:
```bash
cargo install entangle-mirror
```

The package is named `entangle-mirror` on crates.io (the name `entangle` was already taken); the installed binary is called `entangle`.

Or install directly from source:

```bash
cargo install --git https://github.com/cyrusae/entangle --locked
Expand Down
Loading