global: snapshot

This commit is contained in:
nym21
2025-12-21 23:12:18 +01:00
parent 6e0ac138d8
commit 457b0e24c5
45 changed files with 313 additions and 155 deletions
+1
View File
@@ -0,0 +1 @@
lib.rs
+14
View File
@@ -0,0 +1,14 @@
[package]
name = "brk_client"
description = "A BRK API client"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
build = "build.rs"
[dependencies]
brk_types = { workspace = true }
minreq = { workspace = true }
serde = { workspace = true }
+1
View File
@@ -0,0 +1 @@
# brk_client
+8
View File
@@ -0,0 +1,8 @@
fn main() {
let profile = std::env::var("PROFILE").unwrap_or_default();
if profile == "release" {
println!("cargo:rustc-flag=-C");
println!("cargo:rustc-flag=target-cpu=native");
}
}