-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.15 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
[package]
name = "restium"
version = "0.1.0"
edition = "2024"
rust-version = "1.88"
authors = ["Kitstream <opensource@kitstream.io>"]
description = "A declarative reconciling REST client in Rust"
license = "Apache-2.0"
repository = "https://github.com/KitStream/restium"
homepage = "https://github.com/KitStream/restium"
documentation = "https://docs.rs/restium"
keywords = ["rest", "client", "declarative", "reconcile", "http"]
categories = ["command-line-utilities", "web-programming::http-client"]
readme = "README.md"
exclude = ["tests/", "examples/", ".github/", "docs/", ".claude/"]
[[bin]]
name = "restium"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
ureq = { version = "2", features = ["tls", "json"], default-features = false }
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
rustls-pemfile = "2"
base64 = "0.22"
webpki-roots = "0.26"
petgraph = "0.7"
[dev-dependencies]
tempfile = "3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"