A tool to help managing forked repos with their own history
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 22 lines 572 B view raw
1[package] 2name = "forkme" 3version = "0.2.0" 4edition = "2021" 5description = "A tool for managing forks using a patch-based approach" 6license = "AGPL-3.0-only" 7repository = "https://tangled.org/me.webbeef.org/forkme" 8readme = "README.md" 9keywords = ["git", "fork", "patch", "diff", "maintenance"] 10categories = ["command-line-utilities", "development-tools"] 11 12[dependencies] 13anyhow = "1" 14clap = { version = "4", features = ["derive"] } 15diffy = "0.4" 16git2 = "0.20" 17serde = { version = "1", features = ["derive"] } 18toml = "0.9" 19walkdir = "2" 20 21[dev-dependencies] 22tempfile = "3"