Skip to content

Commit 3017617

Browse files
committed
chore: bump deps
1 parent 85a7da4 commit 3017617

File tree

4 files changed

+4
-16
lines changed

4 files changed

+4
-16
lines changed

core/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
#![feature(associated_type_bounds)]
2-
#![feature(generic_associated_types)]
3-
#![feature(async_stream)]
4-
51
pub mod err;
62
pub mod operator;
73
pub mod query;

interface/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
annotation-rs = "0.1.0"
10-
iroha = "0.1.7"
9+
quote-data = "1.0.0"
1110
quote = "1.0"
12-
syn = { version = "1.0", features = ["full"] }
1311
proc-macro2 = "1.0"
1412

1513
[features]

interface/src/ty.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use std::fmt::{Display, Formatter};
22

3-
use iroha::ToTokens;
3+
use quote_data::QuoteIt;
44

5-
#[derive(Copy, Clone, ToTokens, Debug, Eq, PartialEq, Hash)]
6-
#[Iroha(mod_path = "yukino")]
5+
#[derive(Copy, Clone, QuoteIt, Debug, Eq, PartialEq, Hash)]
6+
#[mod_path = "yukino"]
77
pub enum DatabaseType {
88
Bool,
99
SmallInteger,

query-builder/Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,10 @@ edition = "2018"
77

88
[dependencies]
99
interface = { package = "yukino-interface", path = "../interface", version = "0.1.0" }
10-
iroha = "0.1.7"
11-
quote = "1.0"
12-
proc-macro2 = "1.0"
13-
time = { version = "0.3.5" }
1410
serde = { version = "1.0" }
1511
serde_json = { version = "1.0" }
1612
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "json", "time", "decimal"]}
1713
thiserror = "1.0"
18-
generic-array = "0.14.4"
19-
rust_decimal = "1.18.0"
2014

2115
[features]
2216
default = [ "mysql" ]

0 commit comments

Comments
 (0)