Skip to content

Commit

Permalink
prepare v0.1.0 release (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Jan 3, 2022
1 parent c21c67e commit d30983d
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 5 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
env:
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
minrust: 1.51

jobs:
test:
Expand All @@ -24,6 +25,18 @@ jobs:
- run: cargo test --all-features --workspace
- run: cargo build --all-features --all-targets --workspace

minrust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.minrust }}
override: true
# - uses: Swatinem/rust-cache@v1
- name: "check --workspace --all-features"
run: cargo check --workspace --all-features --all-targets

no-std:
strategy:
fail-fast: false
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 0.1.0 (2022-01-03)

- Initial release
16 changes: 13 additions & 3 deletions valuable-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
[package]
name = "valuable-derive"
version = "0.1.0"
authors = ["Carl Lerche <me@carllerche.com>", "Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Values"

rust-version = "1.51.0"
description = "Macros for the `valuable` crate."
repository = "https://github.com/tokio-rs/valuable"
categories = [
"development-tools::debugging",
"encoding",
]
keywords = [
"valuable",
"serialization",
"debugging",
"no_std",
]
[lib]
proc-macro = true

Expand Down
1 change: 1 addition & 0 deletions valuable-serde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "MIT"
description = "`serde::Serialize` implementation for `Valuable` types."
publish = false

[features]
default = ["std"]
Expand Down
18 changes: 16 additions & 2 deletions valuable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
[package]
name = "valuable"
version = "0.1.0"
authors = ["Carl Lerche <me@carllerche.com>"]
edition = "2018"
license = "MIT"
description = "Values"
rust-version = "1.51.0"
readme = "README.md"
repository = "https://github.com/tokio-rs/valuable"
description = """
Object-safe value inspection, used to pass un-typed structured data across trait-object boundaries.
"""
categories = [
"development-tools::debugging",
"encoding",
]
keywords = [
"valuable",
"serialization",
"debugging",
"no_std",
]

[features]
default = ["std"]
Expand Down

0 comments on commit d30983d

Please sign in to comment.