Skip to content

Commit

Permalink
upgrade version to 0.6
Browse files Browse the repository at this point in the history
Signed-off-by: xixi <[email protected]>
  • Loading branch information
Hexilee committed Oct 29, 2021
1 parent 18f6d58 commit 35d9900
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion roa-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa-core"
version = "0.5.1"
version = "0.6.0"
authors = ["Hexilee <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions roa-diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa-diesel"
version = "0.5.0"
version = "0.6.0"
authors = ["Hexilee <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -19,7 +19,7 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
roa = { path = "../roa", version = "0.5", default-features = false }
roa = { path = "../roa", version = "0.6.0", default-features = false }
diesel = { version = "1.4", features = ["extras"] }
r2d2 = "0.8"

Expand Down
2 changes: 1 addition & 1 deletion roa-jsonrpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ categories = ["network-programming", "asynchronous",
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
roa = { path = "../roa", version = "0.5", default-features = false, features = ["json"] }
roa = { path = "../roa", version = "0.6.0", default-features = false, features = ["json"] }
futures = "0.3"
jsonrpc-v2 = { version = "0.5", default-features = false }
bytes = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion roa-juniper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["network-programming", "asynchronous",
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
roa = { path = "../roa", version = "0.5", default-features = false, features = ["json"] }
roa = { path = "../roa", version = "0.6.0", default-features = false, features = ["json"] }
futures = "0.3.4"

[dependencies.juniper]
Expand Down
6 changes: 3 additions & 3 deletions roa-multipart/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa-multipart"
version = "0.5.0"
version = "0.6.0"
authors = ["Hexilee <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -19,15 +19,15 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
roa-core = { path = "../roa-core", version = "0.5" }
roa-core = { path = "../roa-core", version = "0.6.0" }
hyper = { version = "0.13", default-features = false, features = ["stream"] }
bytes = "0.5"
actix-http = "1.0"
actix-multipart = "0.2"
futures = "0.3"

[dev-dependencies]
roa = { path = "../roa", version = "0.5", features = ["router"] }
roa = { path = "../roa", version = "0.6.0", features = ["router"] }
tokio = { version = "0.2", features = ["full"] }
reqwest = { git = "https://github.com/Hexilee/reqwest.git", version = "0.10" }
async-std = "1.5"
Expand Down
6 changes: 3 additions & 3 deletions roa-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = "MIT"
name = "roa-tokio"
readme = "./README.md"
repository = "https://github.com/Hexilee/roa"
version = "0.5.1"
version = "0.6.0"

[package.metadata.docs.rs]
features = ["docs"]
Expand All @@ -24,12 +24,12 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]
[dependencies]
futures = "0.3"
log = "0.4"
roa = {path = "../roa", version = "0.5", default-features = false}
roa = {path = "../roa", version = "0.6.0", default-features = false}
tokio = {version = "0.2", features = ["full"]}

[dev-dependencies]
reqwest = "0.10"
roa = {path = "../roa", version = "0.5"}
roa = {path = "../roa", version = "0.6.0"}

[features]
docs = ["roa/docs"]
64 changes: 32 additions & 32 deletions roa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa"
version = "0.5.3"
version = "0.6.0"
authors = ["Hexilee <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -25,62 +25,62 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]
codecov = { repository = "Hexilee/roa" }

[dependencies]
log = "0.4"
tracing = "0.1"
futures = "0.3"
bytesize = "1.0"
async-trait = "0.1.22"
url = "2.1.1"
async-trait = "0.1.51"
url = "2.2"
percent-encoding = "2.1"
bytes = "0.5"
headers = "0.3.1"
tokio = "0.2.11"
lazy_static = "1.4.0"
hyper = { version = "0.13", default-features = false, features = ["stream"] }
roa-core = { path = "../roa-core", version = "0.5" }
bytes = "1.1"
headers = "0.3"
tokio = "1.12"
once_cell = "1.8"
hyper = { version = "0.14", default-features = false, features = ["stream", "server", "http1", "http2"] }
roa-core = { path = "../roa-core", version = "0.6" }

async-std = { version = "1.6", optional = true }
cookie = { version = "0.13", features = ["percent-encode"], optional = true }
jsonwebtoken = { version = "7.1", optional = true }
async-std = { version = "1.10", features = ["unstable"], optional = true }
cookie = { version = "0.15", features = ["percent-encode"], optional = true }
jsonwebtoken = { version = "7.2", optional = true }
serde = { version = "1", optional = true }
serde_json = { version = "1.0", optional = true }
async-compression = { version = "0.3", features = ["all-algorithms", "stream"], optional = true }
async-compression = { version = "0.3.8", features = ["all-algorithms", "stream"], optional = true }

# router
radix_trie = { version = "0.1.6", optional = true }
regex = { version = "1.3", optional = true }
doc-comment = { version = "0.3.3", optional = true }
radix_trie = { version = "0.2.1", optional = true }
regex = { version = "1.5", optional = true }

# body
askama = { version = "0.9", optional = true }
serde_urlencoded = { version = "0.6", optional = true }
askama = { version = "0.10", optional = true }
doc-comment = { version = "0.3.3", optional = true }
serde_urlencoded = { version = "0.7", optional = true }
mime_guess = { version = "2.0", optional = true }

# websocket
tokio-tungstenite = { version = "0.10.1", default-features = false, optional = true }
tokio-tungstenite = { version = "0.15.0", default-features = false, optional = true }

# tcp
futures-timer = { version = "3.0", optional = true }

# tls
rustls = { version = "0.17", optional = true }
async-tls = { version = "0.7", optional = true }
rustls = { version = "0.20", optional = true }
async-tls = { version = "0.11", optional = true }

[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
tokio-tls = "0.3.0"
hyper-tls = "0.4.1"
reqwest = { version = "0.10", features = ["json", "cookies", "gzip"] }
async-std = { version = "1.6", features = ["attributes"] }
tokio = { version = "1.12", features = ["full"] }
tokio-tls = "0.3.1"
hyper-tls = "0.5"
reqwest = { version = "0.11", features = ["json", "cookies", "gzip"] }
async-std = { version = "1.10", features = ["attributes"] }
pretty_env_logger = "0.4"
serde = { version = "1", features = ["derive"] }
test-case = "1.0.0"
slab = "0.4.2"
multimap = "0.8.0"
hyper = "0.13"
test-case = "1.2"
slab = "0.4.5"
multimap = "0.8"
hyper = "0.14"
chrono = "0.4"
mime = "0.3"
encoding = "0.2"
askama = "0.9"
askama = "0.10"

[features]
default = ["async_rt"]
Expand Down

0 comments on commit 35d9900

Please sign in to comment.