diff --git a/pubspec.yaml b/pubspec.yaml index e9c9072..802556f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 diff --git a/rust/Cargo.toml b/rust/Cargo.toml index f5e70ab..b65545a 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -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.