commit 77091c1337316a246cb0cfcb9cabba36c6547b61
parent 19bd9b31889a511f251aca09bde59922db558540
Author: triesap <tyson@radroots.org>
Date: Thu, 11 Jun 2026 16:08:09 -0700
field: use snake case crate dependency keys
Diffstat:
2 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -19,14 +19,14 @@ readme = "README"
radroots_field_core = { path = "crates/field_core", version = "0.1.0-alpha.1", default-features = false }
radroots_field_ffi_swift = { path = "crates/field_ffi_swift", version = "0.1.0-alpha.1" }
radroots_field_wasm = { path = "crates/field_wasm", version = "0.1.0-alpha.1" }
-radroots-core = { package = "radroots_core", path = "../lib/crates/core", version = "0.1.0-alpha.2", default-features = false }
-radroots-events = { package = "radroots_events", path = "../lib/crates/events", version = "0.1.0-alpha.2", default-features = false }
-radroots-events-codec = { package = "radroots_events_codec", path = "../lib/crates/events_codec", version = "0.1.0-alpha.2", default-features = false }
-radroots-identity = { package = "radroots_identity", path = "../lib/crates/identity", version = "0.1.0-alpha.2", default-features = false }
-radroots-log = { package = "radroots_log", path = "../lib/crates/log", version = "0.1.0-alpha.2", default-features = false }
-radroots-net-core = { package = "radroots_net", path = "../lib/crates/net", version = "0.1.0-alpha.2", default-features = false }
-radroots-nostr = { package = "radroots_nostr", path = "../lib/crates/nostr", version = "0.1.0-alpha.2", default-features = false }
-radroots-trade = { package = "radroots_trade", path = "../lib/crates/trade", version = "0.1.0-alpha.2", default-features = false }
+radroots_core = { path = "../lib/crates/core", version = "0.1.0-alpha.2", default-features = false }
+radroots_events = { path = "../lib/crates/events", version = "0.1.0-alpha.2", default-features = false }
+radroots_events_codec = { path = "../lib/crates/events_codec", version = "0.1.0-alpha.2", default-features = false }
+radroots_identity = { path = "../lib/crates/identity", version = "0.1.0-alpha.2", default-features = false }
+radroots_log = { path = "../lib/crates/log", version = "0.1.0-alpha.2", default-features = false }
+radroots_net_core = { package = "radroots_net", path = "../lib/crates/net", version = "0.1.0-alpha.2", default-features = false }
+radroots_nostr = { path = "../lib/crates/nostr", version = "0.1.0-alpha.2", default-features = false }
+radroots_trade = { path = "../lib/crates/trade", version = "0.1.0-alpha.2", default-features = false }
chrono = { version = "0.4" }
serde = { version = "1", features = ["derive"] }
diff --git a/crates/field_core/Cargo.toml b/crates/field_core/Cargo.toml
@@ -19,27 +19,27 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
[features]
default = ["rt", "nostr-client"]
-rt = ["radroots-net-core/rt"]
+rt = ["radroots_net_core/rt"]
nostr-client = [
- "radroots-net-core/nostr-client",
- "dep:radroots-core",
- "dep:radroots-events-codec",
- "dep:radroots-trade",
- "dep:radroots-identity",
- "dep:radroots-nostr",
+ "radroots_net_core/nostr-client",
+ "dep:radroots_core",
+ "dep:radroots_events_codec",
+ "dep:radroots_trade",
+ "dep:radroots_identity",
+ "dep:radroots_nostr",
]
-directories = ["radroots-net-core/directories"]
-fs-persistence = ["radroots-net-core/fs-persistence"]
+directories = ["radroots_net_core/directories"]
+fs-persistence = ["radroots_net_core/fs-persistence"]
[dependencies]
-radroots-log = { workspace = true }
-radroots-events = { workspace = true }
-radroots-net-core = { workspace = true, features = ["std"] }
-radroots-core = { workspace = true, optional = true }
-radroots-identity = { workspace = true, optional = true, default-features = false, features = ["std"] }
-radroots-events-codec = { workspace = true, features = ["serde_json"], optional = true }
-radroots-trade = { workspace = true, features = ["std", "serde", "serde_json"], optional = true }
-radroots-nostr = { workspace = true, features = ["events"], optional = true }
+radroots_log = { workspace = true }
+radroots_events = { workspace = true }
+radroots_net_core = { workspace = true, features = ["std"] }
+radroots_core = { workspace = true, optional = true }
+radroots_identity = { workspace = true, optional = true, default-features = false, features = ["std"] }
+radroots_events_codec = { workspace = true, features = ["serde_json"], optional = true }
+radroots_trade = { workspace = true, features = ["std", "serde", "serde_json"], optional = true }
+radroots_nostr = { workspace = true, features = ["events"], optional = true }
chrono = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }