Cargo.toml (1832B)
1 [workspace] 2 members = [ 3 "crates/field_core", 4 "crates/field_ffi", 5 "crates/field_wasm", 6 ] 7 resolver = "2" 8 9 [workspace.package] 10 version = "0.1.0-alpha.1" 11 edition = "2024" 12 rust-version = "1.92.0" 13 license = "AGPL-3.0" 14 repository = "https://github.com/radrootslabs/field_lib" 15 homepage = "https://radroots.org" 16 readme = "README" 17 18 [workspace.dependencies] 19 radroots_field_core = { path = "crates/field_core", version = "0.1.0-alpha.1", default-features = false } 20 radroots_field_ffi = { path = "crates/field_ffi", version = "0.1.0-alpha.1" } 21 radroots_field_wasm = { path = "crates/field_wasm", version = "0.1.0-alpha.1" } 22 radroots_core = { path = "../lib/crates/core", version = "0.1.0-alpha.2", default-features = false } 23 radroots_events = { path = "../lib/crates/events", version = "0.1.0-alpha.2", default-features = false } 24 radroots_events_codec = { path = "../lib/crates/events_codec", version = "0.1.0-alpha.2", default-features = false } 25 radroots_identity = { path = "../lib/crates/identity", version = "0.1.0-alpha.2", default-features = false } 26 radroots_log = { path = "../lib/crates/log", version = "0.1.0-alpha.2", default-features = false } 27 radroots_net_core = { package = "radroots_net", path = "../lib/crates/net", version = "0.1.0-alpha.2", default-features = false } 28 radroots_nostr = { path = "../lib/crates/nostr", version = "0.1.0-alpha.2", default-features = false } 29 radroots_trade = { path = "../lib/crates/trade", version = "0.1.0-alpha.2", default-features = false } 30 31 chrono = { version = "0.4" } 32 serde = { version = "1", features = ["derive"] } 33 serde_json = { version = "1" } 34 thiserror = { version = "1" } 35 tokio = { version = "1" } 36 tracing = { version = "0.1" } 37 tracing-subscriber = { version = "0.3" } 38 uniffi = { version = "0.29.4" } 39 uniffi_build = { version = "0.29.4" } 40 wasm-bindgen = { version = "0.2" }