Skip to content

Commit 42fb77b

Browse files
V0.0.1 (#76)
* version: v0.0.1 Signed-off-by: Sam Batschelet <[email protected]> * enable Signed-off-by: Sam Batschelet <[email protected]> * bump: deps Signed-off-by: Sam Batschelet <[email protected]> * avoid rate limiting * add other protocs Signed-off-by: Sam Batschelet <[email protected]> Co-authored-by: Patrick O'Grady <[email protected]>
1 parent b8fb698 commit 42fb77b

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

.github/workflows/test-and-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ jobs:
6161
uses: arduino/setup-protoc@v1
6262
with:
6363
version: '3.x'
64+
repo-token: ${{ secrets.GITHUB_TOKEN }}
6465
- name: Check unused Cargo dependencies
6566
shell: bash
6667
run: scripts/tests.unused.sh
@@ -86,6 +87,7 @@ jobs:
8687
uses: arduino/setup-protoc@v1
8788
with:
8889
version: '3.x'
90+
repo-token: ${{ secrets.GITHUB_TOKEN }}
8991
- name: Run unit tests
9092
run: scripts/tests.unit.sh
9193

@@ -110,6 +112,7 @@ jobs:
110112
uses: arduino/setup-protoc@v1
111113
with:
112114
version: '3.x'
115+
repo-token: ${{ secrets.GITHUB_TOKEN }}
113116
- name: Build plugin
114117
uses: actions-rs/cargo@v1
115118
with:
@@ -160,6 +163,7 @@ jobs:
160163
uses: arduino/setup-protoc@v1
161164
with:
162165
version: '3.x'
166+
repo-token: ${{ secrets.GITHUB_TOKEN }}
163167

164168
# ref. https://github.com/gakonst/foundry/blob/master/.github/workflows/cross-platform.yml
165169
- name: Apple M1 setup

spaces-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacesvm_cli"
3-
version = "0.0.1"
3+
version = "0.0.0"
44
edition = "2021"
55
rust-version = "1.65"
66
publish = false

spacesvm/Cargo.toml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[package]
22
name = "spacesvm"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
edition = "2021"
55
rust-version = "1.65"
6-
publish = false
6+
publish = true
77
description = "Authenticated, hierarchical key-value store w/EIP-712 compatibility"
88
license = "BSD-3-Clause"
99
homepage = "https://avax.network"
10+
repository = "https://github.com/ava-labs/spacesvm-rs"
1011
readme = "README.md"
1112

1213
[[bin]]
@@ -16,28 +17,28 @@ path = "src/bin/spaces/main.rs"
1617
[dependencies]
1718
avalanche-types = { version = "0.0.135", features = ["subnet"] }
1819
byteorder = "1.4.3"
19-
chrono = "0.4.19"
20+
chrono = "0.4.22"
2021
crossbeam-channel = "0.5.6"
2122
derivative = "2.2.0"
2223
dyn-clone = "1.0.9"
2324
ethereum-types = { version = "0.14.0" }
24-
clap = { version = "4.0.9", features = ["cargo", "derive"] }
25+
clap = { version = "4.0.22", features = ["cargo", "derive"] }
2526
eip-712 = "0.1.0"
26-
env_logger = "0.9.0"
27+
env_logger = "0.9.3"
2728
hex = "0.4.3"
2829
http = "0.2.8"
2930
jsonrpc-core = "18.0.0"
3031
jsonrpc-core-client = { version = "18.0.0" }
3132
jsonrpc-derive = "18.0"
3233
log = "0.4.17"
3334
lru = "0.8.0"
34-
prost = "0.11.0"
35+
prost = "0.11.2"
3536
ripemd = "0.1.3"
36-
semver = "1.0.13"
37-
serde = { version = "1.0.144", features = ["derive"] }
38-
serde_json = "1.0.85"
39-
serde_yaml = "0.9.10"
40-
sha3 = "0.10.2"
37+
semver = "1.0.14"
38+
serde = { version = "1.0.147", features = ["derive"] }
39+
serde_json = "1.0.87"
40+
serde_yaml = "0.9.14"
41+
sha3 = "0.10.6"
4142
tokio = { version = "1.21.2", features = ["fs", "rt-multi-thread"] }
4243
tokio-stream = { version = "0.1.11", features = ["net"] }
4344
tonic = { version = "0.8.2", features = ["gzip"] }

0 commit comments

Comments
 (0)