Skip to content

Commit

Permalink
publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorlott committed Jan 16, 2023
1 parent 37a2ae2 commit f18b836
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
[package]
name = "typed"
version = "0.1.0"
name = "rust-typed"
version = "0.1.1"
edition = "2021"
description = "Get the types of a struct"
license = "MIT OR Apache-2.0"
keywords = ["rust", "type", "type-it", "typed", "protocol"]
authors = ["Viktor Lott"]
categories = ["development-tools::procedural-macro-helpers"]
repository = "https://github.com/viktorlott/typed"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions tests/typed-test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![allow(unused_variables)]

extern crate typed;
use typed::type_it;
extern crate rust_typed;
use rust_typed::type_it;

#[type_it]
struct Container<C: Clone, T = i64> {
Expand Down

0 comments on commit f18b836

Please sign in to comment.