Skip to content

Commit c4f20ed

Browse files
committed
Fork crates as rustcrypto-ff/rustcrypto-ff_derive
Adds a `rustcrypto*` prefix to the crate names, allowing us to release forks since we're having trouble getting updates merged upstream: zkcrypto#147
1 parent b1f48af commit c4f20ed

File tree

7 files changed

+98
-96
lines changed

7 files changed

+98
-96
lines changed

Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "ff"
3-
version = "0.14.0-pre.0"
2+
name = "rustcrypto-ff"
3+
version = "0.14.0-pre"
44
authors = [
55
"Sean Bowe <ewillbefull@gmail.com>",
66
"Jack Grigg <thestr4d@gmail.com>",
@@ -17,7 +17,7 @@ repository = "https://github.com/zkcrypto/ff"
1717
[dependencies]
1818
bitvec = { version = "1", default-features = false, optional = true }
1919
byteorder = { version = "1", default-features = false, optional = true }
20-
ff_derive = { version = "=0.14.0-pre.0", path = "ff_derive", optional = true }
20+
ff_derive = { version = "=0.14.0-pre", package = "rustcrypto-ff_derive", path = "ff_derive", optional = true }
2121
rand_core = { version = "0.9", default-features = false }
2222
subtle = { version = "2.2.1", default-features = false, features = ["i128"] }
2323

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# ff
1+
# RustCrypto: ff
22

33
`ff` is a finite field library written in pure Rust, with no `unsafe{}` code.
44

5+
This is a fork of https://github.com/zkcrypto/ff
6+
57
## RFC process
68

79
This crate follows the [zkcrypto RFC process](https://zkcrypto.github.io/rfcs/).

ff_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "ff_derive"
3-
version = "0.14.0-pre.0"
2+
name = "rustcrypto-ff_derive"
3+
version = "0.14.0-pre"
44
authors = [
55
"Sean Bowe <ewillbefull@gmail.com>",
66
"Jack Grigg <thestr4d@gmail.com>",

0 commit comments

Comments
 (0)