Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge identified_vec_macros crate into identified_vec #11

Merged
merged 2 commits into from
Dec 17, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
95 changes: 2 additions & 93 deletions Cargo.lock

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

26 changes: 23 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
[workspace]
[package]
name = "identified_vec"
version = "0.1.5"
edition = "2021"
authors = ["Alexander Cyon <[email protected]>"]
description = "Like HashSet but retaining INSERTION order and without `Hash` requirement on the Element type."
license = "MIT"
readme = "README.md"
repository = "https://github.com/Sajjon/identified_vec"
keywords = ["identifiable", "vec", "orderset", "set", "hashset"]
categories = ["data-structures"]

resolver = "2"
[features]
default = ["id_prim"]
serde = ["dep:serde"]
id_prim = []

members = ["identified_vec", "identified_vec_macros", "tests"]
[dependencies]
serde = { version = "1.0.193", optional = true }
thiserror = "1.0.50"

[dev-dependencies]
identified_vec = { path = ".", features = ["id_prim", "serde"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You can create an identified vec with any element type that implements the `Iden

```rust
extern crate identified_vec;
use identified_vec::{IsIdentifiableVec, IdentifiedVec, Identifiable, IdentifiedVecOf};
use identified_vec::{IsIdentifiedVec, IdentifiedVec, Identifiable, IdentifiedVecOf};
use std::cell::RefCell;

#[derive(Eq, PartialEq, Clone, Debug)]
Expand Down
184 changes: 0 additions & 184 deletions identified_vec/Cargo.lock

This file was deleted.

20 changes: 0 additions & 20 deletions identified_vec/Cargo.toml

This file was deleted.

Loading
Loading