OCaml client for the LinkedIn Voyager API
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prefix all blacksun packages with nox-

Renames 35 packages to make blacksun forks distinguishable from their
opam-repository upstreams. Module names (Git.x, Tls.x, ...) stay bare;
opam package names and dune (public_name) findlib references move to
nox-X. After this commit, zero local package names overlap with
opam-repository.

Renamed:
- nox-git, nox-irmin
- nox-crypto, nox-crypto-pk, nox-crypto-rng, nox-crypto-ec
- nox-tls, nox-tls-eio, nox-tar, nox-tar-eio, nox-tty, nox-tty-eio
- nox-arp, nox-ca-certs, nox-cbor, nox-cookie, nox-crc, nox-csv
- nox-gpt, nox-hkdf, nox-http, nox-jwt, nox-kdf, nox-loc
- nox-memtrace, nox-pds, nox-sexp, nox-slack, nox-toml
- nox-websocket, nox-x509, nox-xdge, nox-yaml

Also drops orphan tar-mirage and tar-unix opam templates that had no
matching package stanza.

+15 -15
+1 -1
bin/dune
··· 2 2 (name main) 3 3 (public_name linkedin) 4 4 (package linkedin) 5 - (libraries linkedin cmdliner eio_main fmt logs vlog tty monopam-info xdge)) 5 + (libraries linkedin cmdliner eio_main fmt logs vlog nox-tty monopam-info nox-xdge))
+5 -5
dune-project
··· 21 21 "Access LinkedIn profile data and feed posts from OCaml using the Voyager API. Provides typed bindings for profiles and posts.") 22 22 (depends 23 23 (ocaml (>= 5.1)) 24 - (cookie (>= 0.1)) 24 + (nox-cookie (>= 0.1)) 25 25 (eio (>= 1.0)) 26 26 (ptime (>= 1.0)) 27 27 (requests (>= 0.1)) 28 28 (fmt (>= 0.9)) 29 29 (logs (>= 0.7)) 30 30 (json (>= 0.1)) 31 - (crypto (>= 0.1)) 32 - (kdf (>= 0.1)) 31 + (nox-crypto (>= 0.1)) 32 + (nox-kdf (>= 0.1)) 33 33 (uri (>= 4.0)) 34 34 (cmdliner (>= 1.2)) 35 35 (lambdasoup (>= 1.0)) 36 36 (re (>= 1.11)) 37 37 eio_main 38 38 monopam-info 39 - tty 39 + nox-tty 40 40 vlog 41 - xdge 41 + nox-xdge 42 42 (mdx :with-test) 43 43 (alcotest :with-test)))
+4 -4
lib/dune
··· 6 6 fmt 7 7 logs 8 8 json 9 - crypto 10 - kdf.pbkdf 9 + nox-crypto 10 + nox-kdf.pbkdf 11 11 requests 12 - cookie 13 - cookie.jar 12 + nox-cookie 13 + nox-cookie.jar 14 14 lambdasoup 15 15 re 16 16 ptime
+5 -5
linkedin.opam
··· 12 12 depends: [ 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "5.1"} 15 - "cookie" {>= "0.1"} 15 + "nox-cookie" {>= "0.1"} 16 16 "eio" {>= "1.0"} 17 17 "ptime" {>= "1.0"} 18 18 "requests" {>= "0.1"} 19 19 "fmt" {>= "0.9"} 20 20 "logs" {>= "0.7"} 21 21 "json" {>= "0.1"} 22 - "crypto" {>= "0.1"} 23 - "kdf" {>= "0.1"} 22 + "nox-crypto" {>= "0.1"} 23 + "nox-kdf" {>= "0.1"} 24 24 "uri" {>= "4.0"} 25 25 "cmdliner" {>= "1.2"} 26 26 "lambdasoup" {>= "1.0"} 27 27 "re" {>= "1.11"} 28 28 "eio_main" 29 29 "monopam-info" 30 - "tty" 30 + "nox-tty" 31 31 "vlog" 32 - "xdge" 32 + "nox-xdge" 33 33 "mdx" {with-test} 34 34 "alcotest" {with-test} 35 35 "odoc" {with-doc}