Skip to content

Commit d7380e9

Browse files
Merge branch 'master' into ECR-3056
2 parents 55c57ca + 6f076b8 commit d7380e9

File tree

15 files changed

+15
-273
lines changed

15 files changed

+15
-273
lines changed

exonum-java-binding/core/rust/Cargo.lock

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

exonum-java-binding/core/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exonum-testkit = "0.11"
2121
chrono = "0.4.7"
2222
failure = "0.1.1"
2323
toml = "0.4.6"
24-
jni = { git = "https://github.com/jni-rs/jni-rs", branch = "auto-detach-threads", version = "0.12.3", features = ["invocation"] }
24+
jni = { version = "0.13.0", features = ["invocation"] }
2525
lazy_static = "1.3.0"
2626
log = "0.4.1"
2727
parking_lot = "0.6"

exonum-java-binding/core/rust/integration_tests/src/executor.rs

Lines changed: 0 additions & 106 deletions
This file was deleted.

exonum-java-binding/core/rust/integration_tests/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ extern crate lazy_static;
1818
extern crate tempfile;
1919

2020
pub mod example_proxy;
21-
pub mod executor;
2221
pub mod fake_service;
2322
pub mod mock;
2423
pub mod test_service;

exonum-java-binding/core/rust/integration_tests/tests/executor.rs

Lines changed: 0 additions & 48 deletions
This file was deleted.

exonum-java-binding/core/rust/integration_tests/tests/executor_nested_attach.rs

Lines changed: 0 additions & 31 deletions
This file was deleted.

exonum-java-binding/core/rust/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,4 @@ pub use storage::*;
5959
pub use testkit::*;
6060

6161
pub use jni::errors::{Error as JniError, ErrorKind as JniErrorKind, Result as JniResult};
62+
pub use jni::Executor;

exonum-java-binding/core/rust/src/proxy/executor.rs

Lines changed: 0 additions & 71 deletions
This file was deleted.

exonum-java-binding/core/rust/src/proxy/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
mod executor;
1615
mod node;
1716
mod service;
1817
mod transaction;
1918

20-
pub use self::executor::*;
2119
pub use self::node::*;
2220
pub use self::service::*;
2321
pub use self::transaction::*;

exonum-java-binding/core/rust/src/proxy/node.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ use exonum::{
2424
use failure;
2525
use jni::objects::JClass;
2626
use jni::sys::{jbyteArray, jshort};
27+
use jni::Executor;
2728
use jni::JNIEnv;
2829

2930
use std::{panic, ptr};
3031

3132
use handle::{cast_handle, drop_handle, to_handle, Handle};
32-
use proxy::Executor;
3333
use storage::View;
3434
use utils::{unwrap_exc_or, unwrap_exc_or_default, unwrap_jni_verbose};
3535
use JniResult;

0 commit comments

Comments
 (0)