Skip to content
Draft
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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "evmc"]
path = evmc
url = https://github.com/second-state/evmc.git
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
# Licensed under the Apache License, Version 2.0.

[package]
name = "evmc-client"
version = "7.4.0"
name = "ssvm-evmc-client"
version = "7.4.1"
authors = ["Zigang Lin <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
repository = "https://github.com/secondstate/evmc-client"
description = "Bindings to EVMC (Client/Host specific)"
edition = "2018"
build = "build.rs"

[dependencies]
evmc-sys = { path = "../evmc-sys" }
evmc-vm = { path = "../evmc-vm" }
evmc-sys = { version = "7.4.0", package = "ssvm-evmc-sys" }
evmc-vm = { version = "7.4.0", package = "ssvm-evmc-vm" }
enum_primitive = "0.1.1"
num = "0.3"

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# evmc-client

Moved from [second-state/evmc](https://github.com/second-state/evmc) (see [PR#2]).

[PR#2]: https://github.com/second-state/evmc/pull/2
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ extern crate cmake;
use cmake::Config;

fn build_link_evmc_tools() {
let dst = Config::new("../../../").build();
let dst = Config::new("evmc").build();
let evmc_path = Path::new(&dst).join("build/lib/loader");
println!("cargo:rustc-link-search=native={}", evmc_path.display());
println!("cargo:rustc-link-lib=static=evmc-loader");
Expand Down
1 change: 1 addition & 0 deletions evmc
Submodule evmc added at b106be