Skip to content

Commit d30983d

Browse files
authored
prepare v0.1.0 release (#79)
1 parent c21c67e commit d30983d

File tree

5 files changed

+46
-5
lines changed

5 files changed

+46
-5
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
env:
1414
RUSTFLAGS: -Dwarnings
1515
RUST_BACKTRACE: 1
16+
minrust: 1.51
1617

1718
jobs:
1819
test:
@@ -24,6 +25,18 @@ jobs:
2425
- run: cargo test --all-features --workspace
2526
- run: cargo build --all-features --all-targets --workspace
2627

28+
minrust:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- uses: actions/checkout@v2
32+
- uses: actions-rs/toolchain@v1
33+
with:
34+
toolchain: ${{ env.minrust }}
35+
override: true
36+
# - uses: Swatinem/rust-cache@v1
37+
- name: "check --workspace --all-features"
38+
run: cargo check --workspace --all-features --all-targets
39+
2740
no-std:
2841
strategy:
2942
fail-fast: false

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 0.1.0 (2022-01-03)
2+
3+
- Initial release

valuable-derive/Cargo.toml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
[package]
22
name = "valuable-derive"
33
version = "0.1.0"
4-
authors = ["Carl Lerche <[email protected]>", "Taiki Endo <[email protected]>"]
54
edition = "2018"
65
license = "MIT"
7-
description = "Values"
8-
6+
rust-version = "1.51.0"
7+
description = "Macros for the `valuable` crate."
8+
repository = "https://github.com/tokio-rs/valuable"
9+
categories = [
10+
"development-tools::debugging",
11+
"encoding",
12+
]
13+
keywords = [
14+
"valuable",
15+
"serialization",
16+
"debugging",
17+
"no_std",
18+
]
919
[lib]
1020
proc-macro = true
1121

valuable-serde/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
77
description = "`serde::Serialize` implementation for `Valuable` types."
8+
publish = false
89

910
[features]
1011
default = ["std"]

valuable/Cargo.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
[package]
22
name = "valuable"
33
version = "0.1.0"
4-
authors = ["Carl Lerche <[email protected]>"]
54
edition = "2018"
65
license = "MIT"
7-
description = "Values"
6+
rust-version = "1.51.0"
7+
readme = "README.md"
8+
repository = "https://github.com/tokio-rs/valuable"
9+
description = """
10+
Object-safe value inspection, used to pass un-typed structured data across trait-object boundaries.
11+
"""
12+
categories = [
13+
"development-tools::debugging",
14+
"encoding",
15+
]
16+
keywords = [
17+
"valuable",
18+
"serialization",
19+
"debugging",
20+
"no_std",
21+
]
822

923
[features]
1024
default = ["std"]

0 commit comments

Comments
 (0)