mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
* Port http storage to rust (#729) * Port http storage to rust * implement rest of parameters as far as possible * stylefixes * rustup * fix invalid timestamp * fix header file * Fix compilation errors * basic impl of dav * dockerize xandikos * add xandikos build * Fix circleci build * Fix circleci config * fix nextcloud port * stylefix * implement upload, upload, delete in rust * fix exc handling * python stylefixes * move caldav.list to rust * fix exc again (fastmail) * stylefixes * add basic logging, fix fastmail * stylefixes * fix tests for etag=None (icloud) * overwrite busted cargo-install-update * install clippy from git * fix rustfmt * rustfmt * clear cache
23 lines
439 B
TOML
23 lines
439 B
TOML
[package]
|
|
name = "vdirsyncer-rustext"
|
|
version = "0.1.0"
|
|
authors = ["Markus Unterwaditzer <markus@unterwaditzer.net>"]
|
|
|
|
[lib]
|
|
name = "vdirsyncer_rustext"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
vobject = "0.4.2"
|
|
sha2 = "0.7.0"
|
|
failure = "0.1"
|
|
shippai = "0.2.3"
|
|
atomicwrites = "0.2.0"
|
|
uuid = { version = "0.6", features = ["v4"] }
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
reqwest = "0.8"
|
|
quick-xml = "0.12.0"
|
|
url = "1.7"
|
|
chrono = "0.4.0"
|
|
env_logger = "0.5"
|