Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.42
Comment thread
carllerche marked this conversation as resolved.
Outdated

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 (2021-12-16)

- Initial release
5 changes: 3 additions & 2 deletions valuable-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "valuable-derive"
version = "0.1.0"
authors = ["Carl Lerche <me@carllerche.com>", "Taiki Endo <te316e89@gmail.com>"]
authors = ["Tokio Contributors <team@tokio.rs>"]
Comment thread
carllerche marked this conversation as resolved.
Outdated
edition = "2018"
license = "MIT"
description = "Values"
# rust-version = "1.42.0"
description = "Macros for `valuable` crate."
Comment thread
carllerche marked this conversation as resolved.
Outdated

Comment thread
carllerche marked this conversation as resolved.
Outdated
[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
23 changes: 21 additions & 2 deletions valuable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
[package]
name = "valuable"
version = "0.1.0"
authors = ["Carl Lerche <me@carllerche.com>"]
authors = ["Tokio Contributors <team@tokio.rs>"]
Comment thread
carllerche marked this conversation as resolved.
Outdated
edition = "2018"
license = "MIT"
description = "Values"
# rust-version = "1.42.0"
readme = "README.md"
Comment thread
carllerche marked this conversation as resolved.
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 All @@ -27,3 +42,7 @@ criterion = "0.3"
[[bench]]
name = "structable"
harness = false

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]