printer on atproto
5
fork

Configure Feed

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

atspool:3

dawn 18975763 7c6c4f54

+20 -20
+18 -18
Cargo.lock
··· 80 80 checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 81 81 82 82 [[package]] 83 + name = "atspool" 84 + version = "0.1.0" 85 + dependencies = [ 86 + "chrono", 87 + "escpos", 88 + "futures-util", 89 + "linemd", 90 + "miette", 91 + "reqwest", 92 + "serde", 93 + "serde_json", 94 + "tokio", 95 + "tokio-tungstenite", 96 + "tracing", 97 + "tracing-subscriber", 98 + ] 99 + 100 + [[package]] 83 101 name = "autocfg" 84 102 version = "1.5.0" 85 103 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1941 1959 "proc-macro2", 1942 1960 "quote", 1943 1961 "syn", 1944 - ] 1945 - 1946 - [[package]] 1947 - name = "theonewhoprints" 1948 - version = "0.1.0" 1949 - dependencies = [ 1950 - "chrono", 1951 - "escpos", 1952 - "futures-util", 1953 - "linemd", 1954 - "miette", 1955 - "reqwest", 1956 - "serde", 1957 - "serde_json", 1958 - "tokio", 1959 - "tokio-tungstenite", 1960 - "tracing", 1961 - "tracing-subscriber", 1962 1962 ] 1963 1963 1964 1964 [[package]]
+1 -1
Cargo.toml
··· 1 1 [package] 2 - name = "theonewhoprints" 2 + name = "atspool" 3 3 version = "0.1.0" 4 4 edition = "2024" 5 5
+1 -1
flake.nix
··· 15 15 ... 16 16 }: 17 17 let 18 - proj = "theonewhoprints"; 18 + proj = "atspool"; 19 19 in 20 20 { 21 21 nci.projects.${proj}.path = ./.;