23 lines
722 B
TOML
23 lines
722 B
TOML
[package]
|
|
name = "geth-control"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
geth-auth = { path = "../geth-auth" }
|
|
geth-cas = { path = "../geth-cas" }
|
|
geth-db = { path = "../geth-db" }
|
|
geth-document = { path = "../geth-document" }
|
|
geth-keychain = { path = "../geth-keychain" }
|
|
geth-kv = { path = "../geth-kv" }
|
|
geth-pipe = { path = "../geth-pipe" }
|
|
geth-pubsub = { path = "../geth-pubsub" }
|
|
geth-resource = { path = "../geth-resource" }
|
|
geth-secrets = { path = "../geth-secrets" }
|
|
geth-ssh-identity = { path = "../geth-ssh-identity" }
|
|
geth-types = { path = "../geth-types" }
|