diff --git a/_sources/cardano-client/0.5/meta.toml b/_sources/cardano-client/0.5/meta.toml index b0e64ea8b..159e50d51 100644 --- a/_sources/cardano-client/0.5/meta.toml +++ b/_sources/cardano-client/0.5/meta.toml @@ -5,3 +5,7 @@ subdir = 'cardano-client' [[revisions]] number = 1 timestamp = 2025-02-04T06:43:15Z + +[[revisions]] +number = 2 +timestamp = 2025-02-25T16:47:53Z diff --git a/_sources/cardano-client/0.5/revisions/2.cabal b/_sources/cardano-client/0.5/revisions/2.cabal new file mode 100644 index 000000000..6d8e54ac3 --- /dev/null +++ b/_sources/cardano-client/0.5/revisions/2.cabal @@ -0,0 +1,44 @@ +cabal-version: 3.0 +name: cardano-client +version: 0.5 +synopsis: An API for ouroboros-network +description: An API for ouroboros-network. +license: Apache-2.0 +license-files: + LICENSE + NOTICE + +copyright: 2019-2023 Input Output Global Inc (IOG), 2023-2024 Intersect +author: IOHK Engineering Team +maintainer: marcin.szamotulski@iohk.io +category: Network +build-type: Simple +extra-doc-files: CHANGELOG.md + +library + hs-source-dirs: src + exposed-modules: Cardano.Client.Subscription + default-language: Haskell2010 + default-extensions: ImportQualifiedPost + build-depends: + base >=4.14 && <4.21, + bytestring >=0.10 && <0.13, + cborg, + containers, + contra-tracer, + network-mux >=0.6 && <0.8, + ouroboros-network >=0.19 && <0.21, + ouroboros-network-api >=0.12 && <0.14, + ouroboros-network-framework >=0.15 && <0.18, + si-timers, + + ghc-options: + -Wall + -Wno-unticked-promoted-constructors + -Wcompat + -Wincomplete-uni-patterns + -Wincomplete-record-updates + -Wpartial-fields + -Widentities + -Wredundant-constraints + -Wunused-packages diff --git a/_sources/cardano-ping/0.8.0.0/meta.toml b/_sources/cardano-ping/0.8.0.0/meta.toml new file mode 100644 index 000000000..5cfa242d5 --- /dev/null +++ b/_sources/cardano-ping/0.8.0.0/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:28Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'cardano-ping' diff --git a/_sources/network-mux/0.7/meta.toml b/_sources/network-mux/0.7/meta.toml new file mode 100644 index 000000000..d2ae1b13b --- /dev/null +++ b/_sources/network-mux/0.7/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:29Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'network-mux' diff --git a/_sources/ntp-client/0.0.1.6/meta.toml b/_sources/ntp-client/0.0.1.6/meta.toml index 23a97c344..51f059236 100644 --- a/_sources/ntp-client/0.0.1.6/meta.toml +++ b/_sources/ntp-client/0.0.1.6/meta.toml @@ -1,3 +1,7 @@ timestamp = 2024-08-07T16:51:08Z github = { repo = "intersectmbo/ouroboros-network", rev = "fd1d8bd7725474d15b4722232b6c999b203c0e37" } subdir = 'ntp-client' + +[[revisions]] +number = 1 +timestamp = 2025-02-25T16:59:55Z diff --git a/_sources/ntp-client/0.0.1.6/revisions/1.cabal b/_sources/ntp-client/0.0.1.6/revisions/1.cabal new file mode 100644 index 000000000..581056207 --- /dev/null +++ b/_sources/ntp-client/0.0.1.6/revisions/1.cabal @@ -0,0 +1,83 @@ +cabal-version: 3.0 + +name: ntp-client +version: 0.0.1.6 +synopsis: NTP client +description: NTP client. +license: Apache-2.0 +license-files: LICENSE + NOTICE +copyright: 2019-2023 Input Output Global Inc (IOG), 2023-2024 Intersect +maintainer: operations@iohk.io +category: Network +build-type: Simple +extra-doc-files: README.md + CHANGELOG.md + +flag demo + description: Build a demo application + default: True + manual: True + +library + exposed-modules: Network.NTP.Client + other-modules: Network.NTP.Client.Packet + Network.NTP.Client.Query + build-depends: async >=2.2 && <2.3 + , base >=4.14 && <4.21 + , binary >=0.8 && <0.11 + , bytestring >=0.10 && <0.13 + , contra-tracer >=0.1 && <0.2 + , network >= 3.1.2 && <3.3 + , stm >=2.4 && <2.6 + , time >=1.9.1 && <1.14 + , Win32-network >=0.1 && <0.3 + + hs-source-dirs: src + default-language: Haskell2010 + default-extensions: ImportQualifiedPost + ghc-options: -Wall + -Wcompat + -Wincomplete-uni-patterns + -Wincomplete-record-updates + -Wpartial-fields + -Widentities + -Wredundant-constraints + -Wunused-packages + default-extensions: GeneralizedNewtypeDeriving + +test-suite test + hs-source-dirs: test, src + main-is: Test.hs + other-modules: Network.NTP.Client.Packet + type: exitcode-stdio-1.0 + build-depends: base >=4.14 && <4.21 + , binary >=0.8 && <0.11 + , time >=1.9.1 && <1.14 + , QuickCheck + , tasty + , tasty-quickcheck + default-language: Haskell2010 + default-extensions: ImportQualifiedPost + ghc-options: -Wall + -Wunused-packages + -threaded + -rtsopts + +executable demo-ntp-client + hs-source-dirs: demo + main-is: Main.hs + if flag(demo) + buildable: True + else + buildable: False + build-depends: async >=2.2 && <2.3 + , base >=4.14 && <4.21 + , contra-tracer >=0.1 && <0.2 + , Win32-network >=0.1 && <0.3 + , ntp-client + default-language: Haskell2010 + default-extensions: ImportQualifiedPost + ghc-options: -Wall + -threaded + -Wunused-packages diff --git a/_sources/ouroboros-network-api/0.13.0.0/meta.toml b/_sources/ouroboros-network-api/0.13.0.0/meta.toml new file mode 100644 index 000000000..591447e88 --- /dev/null +++ b/_sources/ouroboros-network-api/0.13.0.0/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:31Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'ouroboros-network-api' diff --git a/_sources/ouroboros-network-framework/0.17.0.0/meta.toml b/_sources/ouroboros-network-framework/0.17.0.0/meta.toml new file mode 100644 index 000000000..4a86ebc29 --- /dev/null +++ b/_sources/ouroboros-network-framework/0.17.0.0/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:32Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'ouroboros-network-framework' diff --git a/_sources/ouroboros-network-protocols/0.14.0.0/meta.toml b/_sources/ouroboros-network-protocols/0.14.0.0/meta.toml new file mode 100644 index 000000000..e1cf31ca9 --- /dev/null +++ b/_sources/ouroboros-network-protocols/0.14.0.0/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:33Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'ouroboros-network-protocols' diff --git a/_sources/ouroboros-network-testing/0.8.1.0/meta.toml b/_sources/ouroboros-network-testing/0.8.1.0/meta.toml new file mode 100644 index 000000000..f018981ea --- /dev/null +++ b/_sources/ouroboros-network-testing/0.8.1.0/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:34Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'ouroboros-network-testing' diff --git a/_sources/ouroboros-network/0.20.0.0/meta.toml b/_sources/ouroboros-network/0.20.0.0/meta.toml new file mode 100644 index 000000000..a1446defb --- /dev/null +++ b/_sources/ouroboros-network/0.20.0.0/meta.toml @@ -0,0 +1,3 @@ +timestamp = 2025-02-26T16:38:30Z +github = { repo = "intersectmbo/ouroboros-network", rev = "588130b5f0494a42c19da3bd44211ff7607b5831" } +subdir = 'ouroboros-network'