Overview
Comment: | fix int size, small bump |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | v0.3.2 |
Files: | files | file ages | folders |
SHA3-256: |
e3f7eeb26a2ec1a593657555cdfd20d7 |
User & Date: | arcade on 2025-04-26 06:10:05.688 |
Other Links: | manifest | tags |
Context
2025-04-26
| ||
06:32 | also mark source_id scraped just after the scrape starts to delay next scrapes in case of error check-in: 61899b5618 user: arcade tags: trunk, v0.3.2 | |
06:10 | fix int size, small bump check-in: e3f7eeb26a user: arcade tags: trunk, v0.3.2 | |
2025-04-24
| ||
12:12 | move all sql stuff to separate module, get rid of macros check-in: 0340541002 user: arcade tags: trunk, v0.3.1 | |
Changes
Modified Cargo.lock
from [351e452347]
to [0e6e35a879].
︙ | ︙ | |||
408 409 410 411 412 413 414 | name = "bytes" version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "cc" | | | | 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | name = "bytes" version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "cc" version = "1.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a" dependencies = [ "shlex", ] [[package]] name = "cfg-if" version = "1.0.0" |
︙ | ︙ | |||
2922 2923 2924 2925 2926 2927 2928 | "futures-sink", "pin-project-lite", "tokio", ] [[package]] name = "toml" | | | | | | | | 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 | "futures-sink", "pin-project-lite", "tokio", ] [[package]] name = "toml" version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "900f6c86a685850b1bc9f6223b20125115ee3f31e01207d81655bbcc0aea9231" dependencies = [ "serde", "serde_spanned", "toml_datetime", "toml_edit", ] [[package]] name = "toml_datetime" version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3" dependencies = [ "serde", ] [[package]] name = "toml_edit" version = "0.22.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10558ed0bd2a1562e630926a2d1f0b98c827da99fabd3fe20920a59642504485" dependencies = [ "indexmap", "serde", "serde_spanned", "toml_datetime", "winnow", ] |
︙ | ︙ | |||
3579 3580 3581 3582 3583 3584 3585 | name = "windows_x86_64_msvc" version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" [[package]] name = "winnow" | | | | 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 | name = "windows_x86_64_msvc" version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" [[package]] name = "winnow" version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6cb8234a863ea0e8cd7284fcdd4f145233eb00fee02bbdd9861aec44e6477bc5" dependencies = [ "memchr", ] [[package]] name = "wit-bindgen-rt" version = "0.39.0" |
︙ | ︙ | |||
3633 3634 3635 3636 3637 3638 3639 | "quote", "syn 2.0.100", "synstructure", ] [[package]] name = "zerocopy" | | | | | | 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 | "quote", "syn 2.0.100", "synstructure", ] [[package]] name = "zerocopy" version = "0.8.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" version = "0.8.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" dependencies = [ "proc-macro2", "quote", "syn 2.0.100", ] [[package]] |
︙ | ︙ |
Modified Cargo.toml
from [d8cdea31b9]
to [593916547f].
1 2 | [package] name = "rsstg" | | | 1 2 3 4 5 6 7 8 9 10 | [package] name = "rsstg" version = "0.3.2" authors = ["arcade"] edition = "2021" [dependencies] anyhow = "1.0.86" async-std = { version = "1.12.0", features = [ "attributes", "tokio1" ] } atom_syndication = { version = "0.12.4", features = [ "with-serde" ] } |
︙ | ︙ |
Modified src/sql.rs
from [9ff239b4bf]
to [5aa2f82de1].
︙ | ︙ | |||
15 16 17 18 19 20 21 | Row, postgres::PgPoolOptions, pool::PoolConnection, }; #[derive(sqlx::FromRow, Debug)] pub struct List { | | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | Row, postgres::PgPoolOptions, pool::PoolConnection, }; #[derive(sqlx::FromRow, Debug)] pub struct List { pub source_id: i32, pub channel: String, pub enabled: bool, pub url: String, pub iv_hash: Option<String>, pub url_re: Option<String>, } |
︙ | ︙ |