-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
94 lines (91 loc) · 2.95 KB
/
Cargo.toml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
members = ["scope"]
resolver = "2"
# Config for 'dist'
[workspace.metadata.dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.25.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "oscope-dev/homebrew-formulas"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl"]
# Global artifacts jobs to run in CI
global-artifacts-jobs = ["./build-linux-pkgs"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Which actions to run on pull requests
pr-run-mode = "plan"
# Whether to publish prereleases to package managers
publish-prereleases = true
# Post-announce jobs to run in CI
post-announce-jobs = ["./dotslash"]
# Local artifacts jobs to run in CI
local-artifacts-jobs = ["./build-linux-arm"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.dependencies]
clap = { version = "4.5.8", features = ["derive", "env"]}
human-panic = "2.0.2"
tokio = { version = "1", features = ["full"] }
colored = "2.1.0"
which = { version = "6.0", features = ["regex"] }
regex = "1.11.0"
lazy_static = "1.5.0"
inquire = { version = "0.6", features = ["editor"]}
tracing-subscriber = { version = "0.3", features = ["time", "json", "local-time" ] }
tracing-appender = "0.2.3"
chrono = "0.4"
nanoid = "0.4"
directories = "5"
derivative = "2"
reqwest = { version = "0.12", features = ["multipart", "rustls-tls", "native-tls-vendored" ] }
time = { version = "0.3", features = ["macros", "formatting", "local-offset"] }
json = "0.12"
minijinja = { version = "2.3.1", features = ["loader"] }
itertools = { version = "0.13", features = [] }
path-clean = "1.0.1"
async-trait = "0.1.83"
mockall = "0.12.1"
pathdiff = "0.2.2"
glob = "0.3"
educe = "0.5.11"
petgraph = "0.6.5"
sha256 = "1.5.0"
anyhow = "1.0.90"
thiserror = "1.0.64"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
schemars = "0.8"
derive_builder = "0.20"
strum = { version = "0.26", features = ["derive"] }
jsonschema = "0.17"
tracing = "0.1.40"
ignore = "0.4.23"
tracing-indicatif = "0.3.9"
indicatif = "0.17"
strip-ansi-escapes = "0.2.0"
octocrab = "0.38.0"
jsonwebtoken = "9.3.0"
secrecy = "0.8.0"
url = "2.5.2"
dotenvy = "0.15.7"
opentelemetry = { version = "0.27.0", features = ["metrics"] }
opentelemetry-otlp = { version = "0.27.0", features = ["metrics", "reqwest", "http-proto", "reqwest-client", "reqwest-rustls"] }
tracing-opentelemetry = "0.28.0"
opentelemetry_sdk = { version = "0.27.0", features = ["metrics", "rt-tokio"] }
tonic = "0.12.0"
gethostname = "0.4.3"
normpath = "1.3.0"
fake = "2.10.0"
shellexpand = "3.1.0"