Pin ratman-identity to 0.6.0 and update Cargo manifest

develop
Katharina Fey 3 years ago
parent 49eddebe04
commit 4b8af8a95d
Signed by: kookie
GPG Key ID: 90734A9E619C8A6C
  1. 2
      Cargo.lock
  2. 2
      clients/hubdctl/Cargo.toml
  3. 6
      libqaul/types/Cargo.toml
  4. 4
      netmods/netmod-mem/Cargo.toml
  5. 2
      netmods/netmod-tcp/Cargo.toml
  6. 2
      ratman/Cargo.toml
  7. 2
      ratman/identity/Cargo.toml
  8. 2
      ratman/netmod/Cargo.toml
  9. 2
      rpc-layer/libqaul-rpc/Cargo.toml
  10. 6
      rpc-layer/qrpc-broker/Cargo.toml
  11. 10
      rpc-layer/qrpc-sdk/Cargo.toml
  12. 2
      rpc-layer/ratman-rpc/Cargo.toml
  13. 2
      rpc-layer/service-rpc/Cargo.toml
  14. 4
      shell.nix
  15. 2
      utils/alexandria-tags/Cargo.toml
  16. 2
      utils/alexandria/Cargo.toml

2
Cargo.lock generated

@ -1991,7 +1991,7 @@ dependencies = [
[[package]]
name = "ratman-identity"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"bincode",
"blake2 0.8.1",

@ -2,7 +2,7 @@
name = "hubdctl"
description = "A control RPC client for qaul-hubd"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
license = "GPL-3.0"

@ -2,11 +2,11 @@
name = "libqaul-types"
description = "libqaul type fascade"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
[dependencies]
ratman-identity = { version = "0.5", path = "../../ratman/identity", features = ["random"] }
ratman-identity = { version ="0.6.0", path = "../../ratman/identity", features = ["random"] }
serde = { version = "1.0", features = ["derive"] }
alexandria-tags = { path = "../../utils/alexandria-tags" }
@ -15,4 +15,4 @@ capnpc = { version = "0.13", optional = true }
[features]
rpc = ["capnpc"]
rpc = ["capnpc"]

@ -10,5 +10,5 @@ license = "AGPL-3.0"
async-std = { version = "=1.5", features = ["attributes", "unstable"] }
async-trait = "0.1"
crossbeam-channel = "0.4"
ratman-identity = { version = "0.5", path = "../../ratman/identity", package = "ratman-identity", features = [ "digest" ] }
ratman-netmod = { version = "0.3", path = "../../ratman/netmod", package = "ratman-netmod" }
ratman-identity = { version ="0.6.0", path = "../../ratman/identity", package = "ratman-identity", features = [ "digest" ] }
ratman-netmod = { version = "0.3", path = "../../ratman/netmod", package = "ratman-netmod" }

@ -17,4 +17,4 @@ byteorder = "1.0"
failure = "0.1"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-futures = "0.2"

@ -18,7 +18,7 @@ tracing-futures = "0.2"
twox-hash = "1.5"
# Sub-components
identity = { version = "0.5", path = "identity", package = "ratman-identity", features = ["digest", "random"] }
identity = { version ="0.6.0", path = "identity", package = "ratman-identity", features = ["digest", "random"] }
netmod = { version = "0.3", path = "netmod", package = "ratman-netmod"}
clockctrl = { version = "0.1", path = "../utils/clockctrl" }
task-notify = { version = "0.1", path = "../utils/task-notify" }

@ -1,7 +1,7 @@
[package]
name = "ratman-identity"
description = "Network identity abstraction for Ratman routers and drivers"
version = "0.5.0"
version = "0.6.0"
homepage = "https://qaul.org"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"

@ -11,7 +11,7 @@ homepage = "https://qaul.org"
license = "AGPL-3.0"
[dependencies]
identity = { version = "0.5", path = "../identity", features = ["digest", "random"], package = "ratman-identity" }
identity = { version ="0.6.0", path = "../identity", features = ["digest", "random"], package = "ratman-identity" }
conjoiner = { version = "1.0", package = "conjoiner-engine" }
serde = { version = "1.0", features = ["derive"] }

@ -1,7 +1,7 @@
[package]
name = "libqaul-rpc2"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
[dependencies]

@ -2,11 +2,11 @@
name = "qrpc-broker"
description = "Provide a generic RPC server to connect qaul services together"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
[dependencies]
identity = { path = "../../ratman/identity", version = "0.5", package = "ratman-identity", features = ["random"] }
identity = { path = "../../ratman/identity", version ="0.6.0", package = "ratman-identity", features = ["random"] }
qrpc-sdk = { path = "../qrpc-sdk", version = "0.1", features = ["internals"] }
async-std = "=1.5"
@ -15,4 +15,4 @@ capnp = "0.13"
lazy_static = "1.0"
signal-hook = "0.1.16"
socket2 = { version = "0.3", features = ["unix"] }
tracing = "0.1"
tracing = "0.1"

@ -2,17 +2,20 @@
name = "qrpc-sdk"
description = "A client SDK to build qrpc (qaul rpc) extensions"
version = "0.1.1"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
license = "GPL-3.0-or-later"
documentation = "https://docs.rs/qrpc-sd"
repository = "https://git.open-communication.net/qaul/qaul.net"
[package.metadata.docs.rs]
features = ["internals"]
[features]
internals = []
[dependencies]
identity = { path = "../../ratman/identity", version = "0.5.0", package = "ratman-identity", features = ["random"] }
identity = { path = "../../ratman/identity", version ="0.6.0", package = "ratman-identity", features = ["random"] }
async-std = { version = "=1.5", features = ["unstable"] }
async-trait = "0.1"
@ -22,6 +25,3 @@ tracing = "0.1"
[build-dependencies]
capnpc = "0.13"
[package.metadata.docs.rs]
features = ["internals"]

@ -1,7 +1,7 @@
[package]
name = "ratman-rpc"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -1,7 +1,7 @@
[package]
name = "service-rpc"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -8,7 +8,9 @@ stdenv.mkDerivation {
buildInputs = with pkgs; [
# General rust stuff
rustup clangStdenv cargo-watch
rustc
clangStdenv cargo-watch
binutils # rustracer -- currently broken
# Required for the docs

@ -2,7 +2,7 @@
name = "alexandria-tags"
description = "Alexandria search tag system"
version = "0.1.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
authors = ["Katharina Fey <kookie@spacekookie.de>"]
license = "GPL-3.0-or-later"
edition = "2018"

@ -9,7 +9,7 @@ license = "GPL-3.0-or-later"
edition = "2018"
[dependencies]
id = { version = "0.5", path = "../../ratman/identity", features = ["digest", "random", "aligned"], package = "ratman-identity" }
id = { version ="0.6.0", path = "../../ratman/identity", features = ["digest", "random", "aligned"], package = "ratman-identity" }
alexandria-tags = { path = "../alexandria-tags" }
async-std = { version = "=1.5", features = ["unstable", "attributes"] }

Loading…
Cancel
Save