Skip to content

Commit

Permalink
Rename group-math Cargo.toml package name for crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
myl7 committed Sep 29, 2023
1 parent c18856d commit 13aff41
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dcf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ multithread = ["rayon"]

[dependencies]
bitvec = "1.0.1"
group = { path = "../group-math", features = ["byte"] }
group-math = { version = "0.1.0", path = "../group-math", features = ["byte"] }
aes = { version = "0.8.3", optional = true }
rayon = { version = "1.7.0", optional = true }

Expand Down
2 changes: 2 additions & 0 deletions dcf/benches/dcf.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
extern crate group_math as group;

use criterion::{criterion_group, criterion_main, Criterion};
use group::byte::ByteGroup;
use group::Group;
Expand Down
2 changes: 2 additions & 0 deletions dcf/benches/dcf_batch_eval.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
extern crate group_math as group;

use criterion::{criterion_group, criterion_main, Criterion};
use group::byte::ByteGroup;
use group::Group;
Expand Down
2 changes: 2 additions & 0 deletions dcf/benches/dcf_large_lambda.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
extern crate group_math as group;

use criterion::{criterion_group, criterion_main, Criterion};
use group::byte::ByteGroup;
use group::Group;
Expand Down
2 changes: 2 additions & 0 deletions dcf/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

//! See [`Dcf`]
extern crate group_math as group;

#[cfg(feature = "prg")]
pub mod prg;

Expand Down
2 changes: 1 addition & 1 deletion group-math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "group"
name = "group-math"
version = "0.1.0"
edition.workspace = true
description = "Group (mathematics) interface and implementations"
Expand Down

0 comments on commit 13aff41

Please sign in to comment.