MOD: repos are now using malloc.io because of mooove

This commit is contained in:
JohnE 2026-06-20 11:52:36 -04:00
parent 8221b211fa
commit 4154eca4e7
2 changed files with 8 additions and 4 deletions

View File

@ -1,7 +1,7 @@
name: ccc_cryptography
description: "Copius Cipher Chain Cryptography"
publish_to: 'none'
version: 0.2.0
version: 0.2.1
environment:
sdk: ^3.10.1

View File

@ -1,6 +1,6 @@
[package]
name = "ccc_cryptography"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
[lib]
@ -11,8 +11,12 @@ crate-type = ["cdylib", "staticlib"]
# After pushing changes to lum_ccc_rust run:
# cargo update -p ccc-crypto-core -p ccc-crypto-wolfssl (in this directory)
# then commit the updated Cargo.lock.
ccc-crypto-core = { git = "ssh://git@10.0.5.109/j3g/lum_ccc_rust.git", branch = "trunk" }
ccc-crypto-wolfssl = { git = "ssh://git@10.0.5.109/j3g/lum_ccc_rust.git", branch = "trunk" }
ccc-crypto-core = { git = "ssh://git@git.malloc.io:1122/j3g/lum_ccc_rust.git", branch = "trunk" }
ccc-crypto-wolfssl = { git = "ssh://git@git.malloc.io:1122/j3g/lum_ccc_rust.git", branch = "trunk" }
# Production in office
# ccc-crypto-core = { git = "ssh://git@10.0.5.109/j3g/lum_ccc_rust.git", branch = "trunk" }
# ccc-crypto-wolfssl = { git = "ssh://git@10.0.5.109/j3g/lum_ccc_rust.git", branch = "trunk" }
# Local development: set CCC_LOCAL_DEV=1 and use `cargo build` directly
# (not through Flutter) to iterate without git fetches or lock-file churn.