Skip to content

Commit e10459d

Browse files
Merge pull request #164 from rainlanguage/fix/workspace-inheritance
Remove workspace inheritance for external consumption
2 parents 4a25231 + bacab79 commit e10459d

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

crates/float/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[package]
22
name = "rain-math-float"
3-
version.workspace = true
4-
edition.workspace = true
5-
license.workspace = true
6-
homepage.workspace = true
3+
version = "0.1.0"
4+
edition = "2021"
5+
license = "LicenseRef-DCL-1.0"
6+
homepage = "https://github.com/rainlanguage/rain.math.float"
77

88
[lib]
99
crate-type = ["rlib", "cdylib"]
1010

1111
[dependencies]
12-
alloy.workspace = true
13-
thiserror.workspace = true
14-
serde.workspace = true
12+
alloy = { version = "1.0.9", features = ["sol-types", "json-rpc"] }
13+
thiserror = "2.0.12"
14+
serde = "1.0.219"
1515
wasm-bindgen-utils = { git = "https://github.com/rainlanguage/rain.wasm", rev = "06990d85a0b7c55378a1c8cca4dd9e2bc34a596a" }
1616

1717
[target.'cfg(not(target_family = "wasm"))'.dependencies]
18-
revm = { workspace = true, default-features = false, features = [
18+
revm = { version = "25.0.0", default-features = false, features = [
1919
"c-kzg",
2020
"portable",
2121
"std",
2222
"tracer",
2323
] }
2424

2525
[target.'cfg(target_family = "wasm")'.dependencies]
26-
revm = { workspace = true, default-features = false, features = [
26+
revm = { version = "25.0.0", default-features = false, features = [
2727
"kzg-rs",
2828
"portable",
2929
"std",
@@ -32,7 +32,7 @@ revm = { workspace = true, default-features = false, features = [
3232
getrandom = { version = "0.2.11", features = ["js", "js-sys"] }
3333

3434
[dev-dependencies]
35-
alloy = { workspace = true, features = ["sol-types", "json-rpc", "arbitrary"] }
35+
alloy = { version = "1.0.9", features = ["sol-types", "json-rpc", "arbitrary"] }
3636
anyhow = "1.0.98"
37-
proptest.workspace = true
37+
proptest = "1.7.0"
3838
serde_json = "1.0.140"

crates/float/src/evm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use alloy::sol_types::SolInterface;
33
use revm::context::result::{ExecutionResult, Output, SuccessReason};
44
use revm::context::{BlockEnv, CfgEnv, Evm, TxEnv};
55
use revm::database::InMemoryDB;
6-
use revm::handler::EthPrecompiles;
76
use revm::handler::instructions::EthInstructions;
7+
use revm::handler::EthPrecompiles;
88
use revm::interpreter::interpreter::EthInterpreter;
99
use revm::primitives::address;
1010
use revm::{Context, MainBuilder, MainContext, SystemCallEvm};

crates/float/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use alloy::hex::FromHex;
2-
use alloy::primitives::{B256, Bytes};
2+
use alloy::primitives::{Bytes, B256};
33
use alloy::{sol, sol_types::SolCall};
4-
use revm::primitives::{U256, fixed_bytes};
4+
use revm::primitives::{fixed_bytes, U256};
55
use serde::{Deserialize, Serialize};
66
use std::ops::{Add, Div, Mul, Neg, Sub};
77
use wasm_bindgen_utils::prelude::*;

0 commit comments

Comments
 (0)