-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (74 loc) · 1.89 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (74 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "jj-gh"
version = "0.2.10"
edition = "2024"
description = "`jj` tools for working with GitHub PRs from your terminal"
repository = "https://github.com/mrjones2014/jj-gh"
license = "MIT"
include = [
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/README.md",
# this isn't technically needed for the rust crate,
# but I want release-plz to include changes to it
# in the CHANGELOG.md
"/nix/hm-module.nix",
"/src/**/*.gql",
"/src/**/*.rs",
"/src/gh/github.graphql",
]
[workspace]
members = [
"tools/gen-docs",
"tools/gen-manpage",
"tools/jj-gh-config-derive",
"tools/print-config-schema",
]
[workspace.dependencies]
clap = "4"
[dependencies]
anstyle = "1"
anyhow = "1"
clap = { workspace = true, features = ["derive", "wrap_help"] }
clap_complete = "4"
clap_complete_nushell = "4"
crossterm = "0.29"
figment = { version = "0.10", features = ["toml"] }
flexi_logger = { version = "0.31", default-features = false, features = [
"colors",
] }
futures = "0.3"
gix = { version = "0.86", default-features = false, features = [
"basic",
"blocking-http-transport-reqwest-native-tls",
"blocking-network-client",
"comfort",
"credentials",
"max-performance-safe",
"sha1",
] }
graphql_client = "0.16"
http = "1"
jj-gh-config-derive = { path = "tools/jj-gh-config-derive", version = "0.1.3" }
log = "0.4"
# see: https://github.com/dependabot/dependabot-core/issues/14196
noyalib = "0.0"
octocrab = "0.54"
schemars = { version = "1", optional = true }
secrecy = { version = "0.10", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
shell-words = "1"
tempfile = "3"
thiserror = "2"
tokio = { version = "1", features = ["macros", "process", "rt", "time"] }
toml = "1"
url = "2"
[features]
schema-validation = ["dep:schemars"]
[lints.clippy]
allow_attributes = "deny"
pedantic = { level = "deny", priority = -1 }
[profile.release]
strip = "symbols"