-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (45 loc) · 1.43 KB
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
# Workspace settings
[workspace]
# Crates included in this workspace
members = ["crates/pipx", "crates/pipx-macros"]
# Use the latest cargo resolver for dependency resolution
resolver = "3"
# Shared package settings
[workspace.package]
# Rust edition (modern syntax and features)
edition = "2024"
# Keywords to improve discoverability on crates.io
keywords = ["pipeline", "pipe", "rust", "pipx", "macros"]
# Author information
authors = ["Selçuk Çukur <hello@selcukcukur.me>"]
# License identifier (SPDX format)
license = "MIT"
# Current crate version (Semantic versioning)
version = "0.1.0"
# Documentation URL (reference published on docs.rs)
documentation = "https://docs.rs/pipx"
# Crates.io categories (used for classification and discoverability)
categories = ["rust-patterns", "data-structures", "asynchronous", "value-formatting"]
# Repository URL (source code and issue tracker)
repository = "https://github.com/selcukcukur/pipx"
# Shared dependencies
[workspace.dependencies]
# Core framework for serialization and deserialization
serde = { version = "1", features = ["derive"] }
# Json backend for serde, used for structured data and logging
serde_json = "1"
# Lightweight error handling library for custom error types
thiserror = "2"
# Development profile
[profile.dev]
debug = true
codegen-units = 256
lto = "off"
panic = "unwind"
opt-level = 0
# Release profile
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
opt-level = 3