hyf

Context-aware query service for Radroots
git clone https://radroots.dev/git/hyf.git
Log | Files | Refs | README | LICENSE

pixi.toml (1400B)


      1 [workspace]
      2 name = "hyf"
      3 version = "0.1.0"
      4 description = "Contextual intelligence for the Radroots network"
      5 authors = ["triesap npub1tr33s4tj2le2kk9yzhfphdtss26gyn8kv7savnnjhj794nqp333q8e7grr"]
      6 channels = [
      7   "https://conda.modular.com/max-nightly/",
      8   "conda-forge",
      9   "https://prefix.dev/modular-community",
     10 ]
     11 platforms = ["osx-arm64", "linux-64"]
     12 preview = ["pixi-build"]
     13 
     14 [dependencies]
     15 mojo = "==1.0.0b1"
     16 json = { git = "https://github.com/triesap/mojo_json.git", rev = "56025d73631054d7803143fa5e68c5de578e33f5" }
     17 morph = { git = "https://github.com/triesap/mojo_morph.git", rev = "ea73f909990f3d3f5d12b786fec2f09e1e09f462" }
     18 flare = { git = "https://github.com/triesap/mojo_flare.git", rev = "14aa338d8c4f352ebb2d590cddfde0bde5ea1971" }
     19 
     20 [tasks]
     21 run = "mojo run -I src src/main.mojo"
     22 test-unit = "mojo -I src tests/test_hyf.mojo"
     23 test-runtime = "mojo -I src tests/test_runtime_paths.mojo"
     24 test-repo-local-process = "mojo -I src tests/test_repo_local_process_contract.mojo"
     25 test-stdio = "mojo -I src tests/test_stdio_contract.mojo"
     26 test-provider-adapter = "mojo -I src -I tests tests/test_provider_adapter.mojo"
     27 smoke-max-local = "mojo -I src -I tests tests/max_local_operator_smoke.mojo"
     28 test-runtime-contract = { depends-on = [
     29   "test-runtime",
     30   "test-repo-local-process",
     31   "test-stdio",
     32 ] }
     33 test = { depends-on = [
     34   "test-unit",
     35   "test-provider-adapter",
     36   "test-runtime-contract",
     37 ] }