Skip to content

Commit 1ebae41

Browse files
committed
tmp
1 parent 036b46c commit 1ebae41

File tree

19 files changed

+706
-1845
lines changed

19 files changed

+706
-1845
lines changed

Cargo.lock

+8-653
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ci/docker/x86_64-unknown-linux-musl/Dockerfile

-4
This file was deleted.

ci/docker/x86_64-unknown-linux-musl/build

-5
This file was deleted.

ci/docker/x86_64-unknown-linux-musl/stage/ubuntu-install-packages

-9
This file was deleted.

ci/macos-install-packages

-1
This file was deleted.

ci/ubuntu-install-packages

-9
This file was deleted.

pyroscope_cli/Cargo.toml

+15-25
Original file line numberDiff line numberDiff line change
@@ -5,46 +5,36 @@ Pyroscope Profiler CLI
55
"""
66
keywords = ["pyroscope", "profiler", "cli"]
77
authors = ["Abid Omar <contact@omarabid.com>"]
8-
version = "0.2.9"
9-
edition = "2021"
8+
version = "1.0.1"
9+
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
12-
documentation = "https://docs.rs/pyroscope"
12+
documentation = "https://docs.rs/pyroscope"
1313
repository = "https://github.com/pyroscope-io/pyroscope-rs"
1414
readme = "README.md"
15+
#todo upgrade rust
1516
rust-version = "1.64"
16-
17+
edition = "2021"
1718

1819
[dependencies]
19-
human-panic = "2.0.2"
20-
better-panic = "0.3.0"
21-
log = "0.4.25"
22-
clap_complete = "4.5.44"
23-
names= "0.14.0"
24-
ctrlc = "3.2.2"
25-
duct = "0.13.5"
20+
#todo move dependencies versions to workspace
21+
log = "0.4"
22+
toml = "0.8.20"
23+
env_logger = "0.11.8"
24+
ctrlc = "3.4"
25+
duct = "0.13"
2626
serde = { version = "1.0", features = ["derive"] }
27-
thiserror = "2.0.12"
28-
config = "0.15.11"
29-
lazy_static = "1.4.0"
30-
slog = "2.7.0"
31-
slog-term = "2.8.0"
32-
slog-scope = "4.4.0"
33-
slog-async = "2.7.0"
34-
slog-stdlog = "4.1.0"
27+
thiserror = "2.0"
3528
pyroscope = { path = "../", default-features = false }
3629
pyroscope_pprofrs = { path = "../pyroscope_backends/pyroscope_pprofrs", default-features = false }
3730
pyroscope_rbspy = { path = "../pyroscope_backends/pyroscope_rbspy", default-features = false }
3831
pyroscope_pyspy = { path = "../pyroscope_backends/pyroscope_pyspy", default-features = false }
39-
serde_json = "1.0.115"
4032

4133
[dependencies.clap]
42-
version = "4.5.34"
43-
features = ["cargo", "derive"]
34+
version = "4.5"
35+
features = ["cargo", "derive", "string"]
4436

4537
[dev-dependencies]
46-
assert_cmd = "2.0.4"
47-
predicates = "3.1.3"
48-
38+
#todo add features to enable/disable python/ruby
4939
[features]
5040
default = ["pyroscope/default", "pyroscope_pprofrs/default", "pyroscope_rbspy/default", "pyroscope_pyspy/default"]

0 commit comments

Comments
 (0)