-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (34 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "gitow"
version = "3.0.0"
edition = "2024"
rust-version = "1.88"
license = "MIT"
description = "Open Git remotes and repository pages in your browser from the CLI"
repository = "https://github.com/WhoSowSee/gitow"
homepage = "https://github.com/WhoSowSee/gitow"
documentation = "https://docs.rs/gitow"
readme = "README.md"
keywords = ["git", "cli", "browser", "repository", "remote"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
"/.github",
"/snap",
"/flake.nix",
"/flake.lock",
]
[dependencies]
clap = { version = "4.6.6", default-features = false, features = [
"derive",
"error-context",
"help",
"std",
"usage",
] }
serde = { version = "1.0", default-features = false, features = ["derive", "std"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
thiserror = { version = "2.0.20", default-features = false }
[dev-dependencies]
assert_cmd = "2.2.2"
predicates = { version = "3.1.4", default-features = false }
tempfile = "3.27.0"