f5e6911932
* feat: add release CI * debug: disable `aarch64-unknown-linux-gnu` & add missing `pkgconfig` * fix: add `g++` & `pkg-config` * fix: install libssl-dev on ubuntu * fix: add sudo in specific case * fix: remove ssl dependency * feat: update Cargo.lock * fix: use gcc-multilib * fix: disable aarch64-linux for now * fix: disable problematic platforms * fix: comment out `aarch64-pc-windows-msvc` * fix: set allow deadcode for `Document.language_id` * fix: set valid release tag
26 lines
539 B
TOML
26 lines
539 B
TOML
[workspace]
|
|
members = ["xtask/", "crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
rust-version = "1.71"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
authors = ["Luc Georges <luc@huggingface.co>"]
|
|
|
|
[profile.dev]
|
|
# Disabling debug info speeds up builds a bunch,
|
|
# and we don't rely on it for debugging that much.
|
|
debug = 0
|
|
|
|
[profile.dev.package]
|
|
# This speeds up `cargo xtask dist`.
|
|
miniz_oxide.opt-level = 3
|
|
|
|
[profile.release]
|
|
incremental = true
|
|
# Set this to 1 or 2 to get more useful backtraces in debugger.
|
|
debug = 0
|
|
|
|
[workspace.dependencies]
|