Skip to content

Commit

Permalink
Bump deps, change build command
Browse files Browse the repository at this point in the history
  • Loading branch information
kimono-koans committed Apr 16, 2024
1 parent dd1bf12 commit 210a3b6
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install cargo-deb
run: cargo install cargo-deb
- name: Build package with cargo-deb
run: cargo deb --separate-debug-symbols
run: cargo deb --profile deb --separate-debug-symbols -- --locked
- name: Install alien
run: sudo apt-get install -y alien
- name: Convert deb to rpm with alien
Expand Down
66 changes: 31 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 14 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,26 @@ documentation = "https://github.com/kimono-koans/dano/blob/master/README.md"
[badges]
maintenance = { status = "actively-developed" }

[profile.release]
debug = true
opt-level = "z" # Aggressively optimize for size.
[profile.deb]
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"
inherits = "release"

[dependencies]
primitive-types = { version = "0.12.1", default-features = false }
primitive-types = { version = "0.12.2", default-features = false }
clap = { version = "3.2.8", features = ["cargo"] }
rayon = { version = "1.7.0", default-features = false }
rayon = { version = "1.10.0", default-features = false }
which = { version = "6.0.1", default-features = false }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.96" } # need alloc or std
itertools = { version = "0.12.0" } # use_std, use_alloc for into_group_map_by()
crossbeam-channel = { version = "0.5.10", default-features = false, features = [
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.116" } # need alloc or std
itertools = { version = "0.12.1" } # use_std, use_alloc for into_group_map_by()
crossbeam-channel = { version = "0.5.12", default-features = false, features = [
"std",
] }
num_cpus = { version = "1.15", default-features = false }
xattr = { version = "1.0.0", default-features = false }
num_cpus = { version = "1.16.0", default-features = false }
xattr = { version = "1.3.1", default-features = false }

[package.metadata.deb]
maintainer = "kimono koans <https://github.com/kimono-koans/>"
Expand Down

0 comments on commit 210a3b6

Please sign in to comment.