Skip to content

Commit c7847fc

Browse files
committed
remove circleci integration, now building locally with cross
1 parent cfedca1 commit c7847fc

File tree

4 files changed

+17
-118
lines changed

4 files changed

+17
-118
lines changed

.circleci/config.yml

-107
This file was deleted.

Cargo.toml

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
[package]
2-
name = "octool"
3-
version = "0.4.2"
42
authors = ["rusty-bits <[email protected]>"]
53
edition = "2021"
4+
name = "octool"
5+
version = "0.4.2"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
plist = "1.3.1"
10+
crossterm = "0.23.2"
11+
curl = "0.4.43"
12+
fs_extra = "1.2.0"
1113
hex = "0.4.3"
14+
plist = "1.3.1"
15+
rand = "0.8.5"
1216
serde_json = "1.0.81"
1317
sha2 = "0.10.2"
14-
fs_extra = "1.2.0"
15-
crossterm = "0.23.2"
16-
rand = "0.8.5"
17-
zip = "0.6.2"
18-
curl = "0.4.43"
1918
walkdir = "2.3.2"
19+
zip = "0.6.2"
2020

2121
[profile.release]
22-
opt-level = "s"
23-
lto = true
2422
codegen-units = 1
23+
lto = true
24+
opt-level = "z"
2525
panic = "abort"
26+
strip = true
27+

Cross.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[target.x86_64-unknown-linux-gnu]
2+
pre-build = ["apt-get update && apt-get install --assume-yes libssl-dev"]
3+
4+
[target.x86_64-pc-windows-gnu]
5+

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![license](https://img.shields.io/github/license/rusty-bits/octool.svg)](https://github.com/rusty-bits/octool/blob/main/LICENSE)
44
[![downloads](https://img.shields.io/github/downloads/rusty-bits/octool/total)]()
55
[![release](https://img.shields.io/github/v/release/rusty-bits/octool?display_name=tag)](https://github.com/rusty-bits/octool/releases)
6-
[![circleci](https://circleci.com/gh/rusty-bits/octool.svg?style=shield)](https://circleci.com/gh/rusty-bits/octool)
76

87
A small project to help me learn the Rust language and to hopefully provide better features than my older [OC-tool](https://github.com/rusty-bits/OC-tool). All suggestions and criticisms are welcome (but that doesn't mean I'll get to them in a timely manner, I can be lazy at times)
98
You can build from the included source by running `cargo build --release` (if you have the Rust environment installed) or you can use the binary from [the Releases section on GitHub](https://github.com/rusty-bits/octool/releases). The latest release should contain the binary from the latest commit since I have my automated build push the updates on top of the latest version. Unlike my older OC-tool, this tool does not auto update itself to the latest version. So, for now you will need to check on updates yourself. I will try to include some type of update message in the future.

0 commit comments

Comments
 (0)