/ Cargo.toml
Cargo.toml
1 [workspace] 2 resolver = "2" 3 4 members = [ 5 "abzu-account", 6 "abzu-chameleon", 7 "abzu-core", 8 "abzu-dht", 9 "abzu-token", 10 "abzu-transport", 11 "abzu-router", 12 "abzu-daemon", 13 "abzu-ffi", 14 "abzu-inference", 15 "abzu-sdk", 16 "sovereign-agent", 17 "sovereign-wallet", 18 ] 19 20 [workspace.package] 21 version = "0.1.0" 22 edition = "2024" 23 license = "Proprietary" 24 license-file = "LICENSE" 25 authors = ["Adrian Murray"] 26 # Core dependencies will be added here 27 28 # SOVEREIGN: Force ring backend by using vendored turn-proto 29 [patch.crates-io] 30 turn-client-proto = { path = "_vendor/turn-proto/turn-client-proto" } 31 turn-types = { path = "_vendor/turn-proto/turn-types" }