Skip to content

Commit c1bf3e1

Browse files
committed
version 1.0.0
1 parent 32b21c4 commit c1bf3e1

File tree

5 files changed

+31
-19
lines changed

5 files changed

+31
-19
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ exclude = ["ensure-verifier-no_std"]
1111
resolver = "2"
1212

1313
[workspace.package]
14-
version = "0.1.1"
14+
version = "1.0.0"
1515
edition = "2021"
16+
rust-version = "1.88"
17+
repository = "https://github.com/starkware-libs/stwo/"
18+
license-file = "LICENSE"
1619

1720
[workspace.dependencies]
1821
itertools = { version = "0.12", default-features = false, features = [
@@ -31,7 +34,7 @@ rayon = { version = "1.10.0", optional = false }
3134
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
3235
serde = { version = "1.0", default-features = false, features = ["derive"] }
3336
hashbrown = ">=0.15.2"
34-
std-shims = { path = "crates/std-shims", default-features = false }
37+
stwo-std-shims = { path = "crates/std-shims", default-features = false, version = "1.0.0" }
3538

3639
[profile.bench]
3740
codegen-units = 1

crates/constraint-framework/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition.workspace = true
55

66
[features]
77
default = ["std"]
8-
std = ["stwo/std", "itertools/use_std", "tracing/std", "num-traits/std", "std-shims/std"]
8+
std = ["stwo/std", "itertools/use_std", "tracing/std", "num-traits/std", "stwo-std-shims/std"]
99
parallel = ["dep:rayon", "stwo/parallel"]
1010
prover = ["stwo/prover", "std"]
1111

@@ -17,4 +17,4 @@ tracing.workspace = true
1717
stwo = { path = "../stwo", default-features = false }
1818
rand.workspace = true
1919
hashbrown.workspace = true
20-
std-shims.workspace = true
20+
stwo-std-shims.workspace = true

crates/std-shims/Cargo.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
2-
name = "std-shims"
3-
version = "0.1.0"
4-
edition = "2021"
2+
name = "stwo-std-shims"
3+
4+
version.workspace = true
5+
edition.workspace = true
6+
license-file.workspace = true
7+
description = "Std and alloc shims for stwo"
8+
9+
[lib]
10+
name = "std_shims"
511

612
[features]
713
default = ["std"]

crates/stwo/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "stwo"
33
version.workspace = true
44
edition.workspace = true
5+
repository.workspace = true
6+
license-file.workspace = true
7+
description = "Stwo Circle-STARKs prover"
58

69
[features]
710
default = ["std"]
@@ -17,7 +20,7 @@ std = [
1720
"tracing/std",
1821
"serde/std",
1922
"tracing-subscriber/std",
20-
"std-shims/std",
23+
"stwo-std-shims/std",
2124
]
2225
prover = ["std", "tracing/attributes"]
2326
parallel = ["rayon", "indexmap/rayon"]
@@ -50,7 +53,7 @@ rayon = { workspace = true, optional = true }
5053
serde.workspace = true
5154
tracing-subscriber.workspace = true
5255
hashbrown.workspace = true
53-
std-shims.workspace = true
56+
stwo-std-shims.workspace = true
5457

5558
[dev-dependencies]
5659
aligned = "0.4.2"

0 commit comments

Comments
 (0)