Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add CI badges for crates.io
[package] name = "term" version = "0.4.6" authors = ["The Rust Project Developers", "Steven Allen"] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://github.com/Stebalien/term" homepage = "https://github.com/Stebalien/term" documentation = "https://stebalien.github.io/doc/term/term/" description = """ A terminal formatting library """ categories = ["command-line-interface"] [target.'cfg(windows)'.dependencies] winapi = "0.2" kernel32-sys = "0.2" [features] default=[]
[package] name = "term" version = "0.4.6" authors = ["The Rust Project Developers", "Steven Allen"] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://github.com/Stebalien/term" homepage = "https://github.com/Stebalien/term" documentation = "https://stebalien.github.io/doc/term/term/" description = """ A terminal formatting library """ categories = ["command-line-interface"] [badges] travis-ci = { repository = "Stebalien/term" } appveyor = { repository = "Stebalien/term" } [target.'cfg(windows)'.dependencies] winapi = "0.2" kernel32-sys = "0.2" [features] default=[]
Make core panic-safe in release config
[package] name = "scaii-core" version = "0.1.0" authors = ["Zoe Juozapaitis <jragonmiris@gmail.com>"] [features] default = ["c_api"] c_api = [] rust_api = [] [lib] crate-type = ["cdylib","rlib"] [dependencies] libloading="0.4.1" prost = "0.2" libc = "0.2" lazy_static = "0.2" websocket="0.20" # local deps scaii_defs = {path = "../scaii_defs"}
[package] name = "scaii-core" version = "0.1.0" authors = ["Zoe Juozapaitis <jragonmiris@gmail.com>"] [features] default = ["c_api"] c_api = [] rust_api = [] [lib] crate-type = ["cdylib","rlib"] [dependencies] libloading="0.4.1" prost = "0.2" libc = "0.2" lazy_static = "0.2" websocket="0.20" # local deps scaii_defs = {path = "../scaii_defs"} [profile.release] #We can't unwind over C boundaries panic = "abort"
Set pytest filterwarnings option to raise errors for warnings in the test suite.
[build-system] requires = ["setuptools ~= 60.5", "wheel"] build-backend = "setuptools.build_meta" [tool.pytest.ini_options] django_find_project = false DJANGO_SETTINGS_MODULE = 'tests.django_settings' [tool.coverage.run] branch = true source = ['dirtyfields'] [tool.coverage.report] show_missing = true precision = 2
[build-system] requires = ["setuptools ~= 60.5", "wheel"] build-backend = "setuptools.build_meta" [tool.pytest.ini_options] django_find_project = false DJANGO_SETTINGS_MODULE = 'tests.django_settings' filterwarnings = [ 'error', "default:Using or importing the ABCs from 'collections':DeprecationWarning", # Remove when Python3.7 dropped ] [tool.coverage.run] branch = true source = ['dirtyfields'] [tool.coverage.report] show_missing = true precision = 2
Use correct license in cargo file and update version
[package] name = "sysinfo" version = "0.7.0" authors = ["Guillaume Gomez <guillaume1.gomez@gmail.com>"] description = "Library to handle processes" repository = "https://github.com/GuillaumeGomez/sysinfo" license = "LGPL-3.0+" readme = "README.md" categories = ["filesystem", "os::macos-apis", "os::unix-apis", "os::windows-apis"] build = "build.rs" [dependencies] libc = "^0.2" cfg-if = "0.1" rayon = "^1.0" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["fileapi", "handleapi", "ioapiset", "minwindef", "pdh", "psapi", "synchapi", "sysinfoapi", "tlhelp32", "winbase", "winerror", "winioctl", "winnt"] } [lib] name = "sysinfo" crate_type = ["rlib", "cdylib"] path = "src/sysinfo.rs" [features] c-interface = [] [badges] travis-ci = { repository = "GuillaumeGomez/sysinfo" } appveyor = { repository = "GuillaumeGomez/sysinfo", service = "github" }
[package] name = "sysinfo" version = "0.8.0" authors = ["Guillaume Gomez <guillaume1.gomez@gmail.com>"] description = "Library to handle processes" repository = "https://github.com/GuillaumeGomez/sysinfo" license = "MIT" readme = "README.md" categories = ["filesystem", "os::macos-apis", "os::unix-apis", "os::windows-apis"] build = "build.rs" [dependencies] libc = "^0.2" cfg-if = "0.1" rayon = "^1.0" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["fileapi", "handleapi", "ioapiset", "minwindef", "pdh", "psapi", "synchapi", "sysinfoapi", "tlhelp32", "winbase", "winerror", "winioctl", "winnt"] } [lib] name = "sysinfo" crate_type = ["rlib", "cdylib"] path = "src/sysinfo.rs" [features] c-interface = [] [badges] travis-ci = { repository = "GuillaumeGomez/sysinfo" } appveyor = { repository = "GuillaumeGomez/sysinfo", service = "github" }
Update bootloader requirement from 0.7.1 to 0.8.3
[package] name = "daedalos" version = "0.1.0" authors = ["Bernardo Meurer <meurerbernardo@gmail.com>"] edition = "2018" [package.metadata.bootimage] test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04","-serial", "stdio", "-display", "none"] test-success-exit-code = 33 # (0x10 << 1) | 1 test-timeout = 300 [profile.dev] panic = "abort" [profile.release] panic = "abort" [dependencies] bootloader = "0.7.1" spin = "0.5.0" uart_16550 = "0.2.0" volatile = "0.2.6" x86_64 = "0.8.1" [dependencies.lazy_static] version = "1.3.0" features = ["spin_no_std"]
[package] name = "daedalos" version = "0.1.0" authors = ["Bernardo Meurer <meurerbernardo@gmail.com>"] edition = "2018" [package.metadata.bootimage] test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04","-serial", "stdio", "-display", "none"] test-success-exit-code = 33 # (0x10 << 1) | 1 test-timeout = 300 [profile.dev] panic = "abort" [profile.release] panic = "abort" [dependencies] bootloader = "0.8.3" spin = "0.5.0" uart_16550 = "0.2.0" volatile = "0.2.6" x86_64 = "0.8.1" [dependencies.lazy_static] version = "1.3.0" features = ["spin_no_std"]
Set explicit versions for dependencies
[package] name = "redis" version = "0.5.2" authors = ["Armin Ronacher <armin.ronacher@active-4.com>"] keywords = ["redis", "database"] description = "Redis driver for Rust." homepage = "https://github.com/mitsuhiko/redis-rs" documentation = "http://mitsuhiko.github.io/redis-rs/" license = "BSD-3-Clause" readme = "README.md" #[dependencies.sha1] #git = "https://github.com/mitsuhiko/rust-sha1.git" # #[dependencies.url] #git = "https://github.com/servo/rust-url" [dependencies] sha1 = "*" url = "*" rustc-serialize = "*" [dependencies.unix_socket] rust-unix-socket = "*" optional = true
[package] name = "redis" version = "0.5.2" authors = ["Armin Ronacher <armin.ronacher@active-4.com>"] keywords = ["redis", "database"] description = "Redis driver for Rust." homepage = "https://github.com/mitsuhiko/redis-rs" documentation = "http://mitsuhiko.github.io/redis-rs/" license = "BSD-3-Clause" readme = "README.md" #[dependencies.sha1] #git = "https://github.com/mitsuhiko/rust-sha1.git" # #[dependencies.url] #git = "https://github.com/servo/rust-url" [dependencies] sha1 = "0.1.1" url = "0.5.4" rustc-serialize = "0.3.16" unix_socket = { version ="0.5.0", optional = true }
Update hyper version and unify version notation
[package] description = "A library for building REST clients" repository = "https://github.com/SimonPersson/ease" documentation = "http://simonpersson.github.io/ease/ease/index.html" name = "ease" version = "0.6.1" authors = ["Simon Persson <simon@flaskpost.org>"] keywords = ["rest", "api", "client", "web"] license = "MIT OR Apache-2.0" [dependencies] hyper = "^0.9.4" url = "^1.1.1" serde = "0.8" serde_json = "0.8" [dev-dependencies] serde_macros = "0.8" [[ example ]] name = "json" path = "examples/json.rs" [[ example ]] name = "strings" path = "examples/strings.rs"
[package] description = "A library for building REST clients" repository = "https://github.com/SimonPersson/ease" documentation = "http://simonpersson.github.io/ease/ease/index.html" name = "ease" version = "0.6.1" authors = ["Simon Persson <simon@flaskpost.org>"] keywords = ["rest", "api", "client", "web"] license = "MIT OR Apache-2.0" [dependencies] hyper = "0.10" url = "1.1" serde = "0.8" serde_json = "0.8" [dev-dependencies] serde_macros = "0.8" [[ example ]] name = "json" path = "examples/json.rs" [[ example ]] name = "strings" path = "examples/strings.rs"
Set 'compiletest' version to 0.2.6
[package] name = "amiwo" version = "0.1.0" authors = ["Boris <boris@humanenginuity.com>"] description = "Various utility types & functions for Rust. Named after a famous Beninese dish" repository = "https://github.com/bgbahoue/amiwo" documentation = "https://github.com/bgbahoue/amiwo" readme = "README.md" #categories = ["web-programming::http-server", "development-tools"] license = "MIT" [features] default = [] amiwo_rocket = ["amiwo_serde"] amiwo_serde = [] [dependencies] log = "0.3.7" rocket = "0.2.6" rocket_codegen = "0.2.6" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" [dev-dependencies] compiletest_rs = "*" rocket = { version = "0.2.6", features = ["testing"] }
[package] name = "amiwo" version = "0.1.0" authors = ["Boris <boris@humanenginuity.com>"] description = "Various utility types & functions for Rust. Named after a famous Beninese dish" repository = "https://github.com/bgbahoue/amiwo" documentation = "https://github.com/bgbahoue/amiwo" readme = "README.md" #categories = ["web-programming::http-server", "development-tools"] license = "MIT" [features] default = [] amiwo_rocket = ["amiwo_serde"] amiwo_serde = [] [dependencies] log = "0.3.7" rocket = "0.2.6" rocket_codegen = "0.2.6" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" [dev-dependencies] compiletest_rs = "0.2.6" rocket = { version = "0.2.6", features = ["testing"] }
Fix keep mysql version 3.0.0
[package] name = "r2d2_mysql" version = "3.0.0" authors = ["outersky <outersky@gmail.com>"] license = "MIT" documentation = "http://outersky.github.io/r2d2-mysql/doc/v0.2.0/r2d2_mysql" description = "MySQL support for the r2d2 connection pool" repository = "https://github.com/outersky/r2d2-mysql" keywords = ["mysql", "sql", "pool", "database","r2d2"] [lib] name = "r2d2_mysql" path = "src/lib.rs" [dependencies] rustc-serialize = "~0.3.19" r2d2 = "0.7.0" [dependencies.mysql] mysql = "7.1.2" default-features = false
[package] name = "r2d2_mysql" version = "3.0.0" authors = ["outersky <outersky@gmail.com>"] license = "MIT" documentation = "http://outersky.github.io/r2d2-mysql/doc/v0.2.0/r2d2_mysql" description = "MySQL support for the r2d2 connection pool" repository = "https://github.com/outersky/r2d2-mysql" keywords = ["mysql", "sql", "pool", "database","r2d2"] [lib] name = "r2d2_mysql" path = "src/lib.rs" [dependencies] rustc-serialize = "~0.3.19" r2d2 = "0.7.0" [dependencies.mysql] mysql = "3.0.0" default-features = false
Upgrade cython to support python 3.11+
[build-system] requires = [ "setuptools", "wheel", "cython==0.29.21", "oldest-supported-numpy; python_version >= '3.5'", "numpy; python_version < '3.5'" ]
[build-system] requires = [ "setuptools", "wheel", "cython==0.29.32", "oldest-supported-numpy; python_version >= '3.5'", "numpy; python_version < '3.5'" ]
Update required forge version to 36.1.12
modLoader="javafml" loaderVersion="[36,)" issueTrackerURL="https://github.com/MC-U-Team/U-Team-Core/issues" displayURL="https://u-team.info/mods/uteamcore" logoFile="logo.png" license="Apache-2.0 License" credits="Team U-Team" authors="HyCraftHD, MrTroble" [[mods]] modId="uteamcore" version="${file.jarVersion}" displayName="U Team Core" updateJSONURL="https://api.u-team.info/update/uteamcore.json" description="This library contains many useful modding stuff!" [[dependencies.uteamcore]] modId="forge" mandatory=true versionRange="[36.0.46,)" ordering="NONE" side="BOTH" [[dependencies.uteamcore]] modId="minecraft" mandatory=true versionRange="[1.16.5]" ordering="NONE" side="BOTH"
modLoader="javafml" loaderVersion="[36,)" issueTrackerURL="https://github.com/MC-U-Team/U-Team-Core/issues" displayURL="https://u-team.info/mods/uteamcore" logoFile="logo.png" license="Apache-2.0 License" credits="Team U-Team" authors="HyCraftHD, MrTroble" [[mods]] modId="uteamcore" version="${file.jarVersion}" displayName="U Team Core" updateJSONURL="https://api.u-team.info/update/uteamcore.json" description="This library contains many useful modding stuff!" [[dependencies.uteamcore]] modId="forge" mandatory=true versionRange="[36.1.12,)" ordering="NONE" side="BOTH" [[dependencies.uteamcore]] modId="minecraft" mandatory=true versionRange="[1.16.5]" ordering="NONE" side="BOTH"
Add YARN_VERSION to fix CD
[build] command = "yarn run build" publish = "dist" [context.production] [context.production.environment] HUGO_VERSION = "0.26" NODE_ENV = "production" [context.branch-deploy] [context.branch-deploy.environment] HUGO_VERSION = "0.26" NODE_ENV = "production"
[build] command = "yarn run build" publish = "dist" [context.production] [context.production.environment] HUGO_VERSION = "0.26" YARN_VERSION = "0.27.5" NODE_ENV = "production" [context.branch-deploy] [context.branch-deploy.environment] HUGO_VERSION = "0.26" YARN_VERSION = "0.27.5" NODE_ENV = "production"
Fix nightly building on nightly
[package] name = "gluon_language-server" version = "0.1.0" authors = ["Markus Westerlind <marwes91@gmail.com>"] build = "build.rs" description = "Language server providing completion for gluon" license = "MIT" repository = "https://github.com/Marwes/gluon_language-server" [build-dependencies.serde_codegen] version = "0.7.9" optional = true [dependencies.jsonrpc-core] version = "2.0.7" [dependencies] log = "0.3.6" env_logger = "0.3.3" serde = "0.7.9" serde_json = "0.7.1" [dependencies.serde_macros] version = "0.7.9" optional = true [dependencies.gluon] version = "0.1.2" [features] default = ["serde_codegen"] nightly = ["serde_macros", "jsonrpc-core/nightly"]
[package] name = "gluon_language-server" version = "0.1.0" authors = ["Markus Westerlind <marwes91@gmail.com>"] build = "build.rs" description = "Language server providing completion for gluon" license = "MIT" repository = "https://github.com/Marwes/gluon_language-server" [build-dependencies.serde_codegen] version = "0.7.9" optional = true [dependencies.jsonrpc-core] version = "2.0.7" default-features = false [dependencies] log = "0.3.6" env_logger = "0.3.3" serde = "0.7.9" serde_json = "0.7.1" [dependencies.serde_macros] version = "0.7.9" optional = true [dependencies.gluon] version = "0.1.2" [features] default = ["serde_codegen", "jsonrpc-core/default"] nightly = ["serde_macros", "jsonrpc-core/nightly"]
Update the description to mention zero-copy
[package] name = "combine" version = "2.2.0" authors = ["Markus Westerlind <marwes91@gmail.com>"] description = "Parser combinators based on the Haskell library parsec." repository = "https://github.com/Marwes/combine" documentation = "https://marwes.github.io/combine/combine/index.html" readme = "README.md" keywords = ["parser", "combinators", "ll"] categories = ["parsing"] license = "MIT" [lib] name = "combine" path = "src/lib.rs" [dependencies] ascii = "0.7.0" [dev-dependencies] byteorder = "0.5.3" [features] # Run the mp4 benchmark, requires a mp4 file named `small.mp4` in the benches directory mp4 = []
[package] name = "combine" version = "2.2.0" authors = ["Markus Westerlind <marwes91@gmail.com>"] description = "Fast parser combinators on arbitrary streams with zero-copy support." repository = "https://github.com/Marwes/combine" documentation = "https://marwes.github.io/combine/combine/index.html" readme = "README.md" keywords = ["parser", "parsing", "combinators", "ll"] categories = ["parsing"] license = "MIT" [lib] name = "combine" path = "src/lib.rs" [dependencies] ascii = "0.7.0" [dev-dependencies] byteorder = "0.5.3" [features] # Run the mp4 benchmark, requires a mp4 file named `small.mp4` in the benches directory mp4 = []
Update keywords in crates.io metadata
[package] name = "itoa" version = "1.0.2" # remember to update html_root_url authors = ["David Tolnay <dtolnay@gmail.com>"] categories = ["value-formatting", "no-std"] description = "Fast integer primitive to string conversion" documentation = "https://docs.rs/itoa" edition = "2018" exclude = ["performance.png", "chart/**"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/dtolnay/itoa" rust-version = "1.36" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
[package] name = "itoa" version = "1.0.2" # remember to update html_root_url authors = ["David Tolnay <dtolnay@gmail.com>"] categories = ["value-formatting", "no-std"] description = "Fast integer primitive to string conversion" documentation = "https://docs.rs/itoa" edition = "2018" exclude = ["performance.png", "chart/**"] keywords = ["integer"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/dtolnay/itoa" rust-version = "1.36" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
Tidy dependency graph prior to Rust 2018 update
[package] name = "matroska" description = "Matroska/WebM demuxer" version = "0.1.0" authors = ["Luca Barbato <lu_zero@gentoo.org>"] readme = "README.md" license = "MIT" [lib] name = "matroska" path = "src/lib.rs" [dependencies] nom = "^4.0" cookie-factory = "^0.2" av-data = { git = "https://github.com/rust-av/rust-av" } av-format = { git = "https://github.com/rust-av/rust-av" } circular = "0.2" log = "0.4" [dev-dependencies] quickcheck = "0.8" pretty_env_logger = "0.3" [workspace] members = ["tools"]
[package] name = "matroska" description = "Matroska/WebM demuxer" version = "0.1.0" authors = ["Luca Barbato <lu_zero@gentoo.org>"] readme = "README.md" license = "MIT" [lib] name = "matroska" path = "src/lib.rs" [dependencies] nom = "4.0" cookie-factory = "0.2" av-data = "0.1" av-format = "0.1" circular = "0.2" log = "0.4" [dev-dependencies] quickcheck = "0.8" pretty_env_logger = "0.3" [workspace] members = ["tools"]
Update the package metadate pending initial publish
[package] name = "av-bitstream" description = "Simple bit and byte writer/reader" version = "0.1.0" authors = ["Luca Barbato <lu_zero@gentoo.org>"] [dependencies] failure = "0.1.1" [dev-dependencies] assert_matches = "1.1"
[package] name = "av-bitstream" description = "Simple bit writer/reader" version = "0.1.0" authors = ["Luca Barbato <lu_zero@gentoo.org>"] license = "MIT" repository = "https://github.com/rust-av/rust-av" [dependencies] failure = "0.1.1" [dev-dependencies] assert_matches = "1.1"
Disable clap features to speed up build
[package] name = "intercom-cli" version = "0.1.0" authors = ["Mikko Rantanen <jubjub@jubjubnest.net>"] [dependencies] clap = { version = "2.29" } failure = "0.1" [dependencies.intercom] version = "0.2" path = "../intercom" default-features = false features = [ "generators" ]
[package] name = "intercom-cli" version = "0.1.0" authors = ["Mikko Rantanen <jubjub@jubjubnest.net>"] [dependencies] clap = { version = "2.27.1", default-features = false } failure = "0.1" [dependencies.intercom] version = "0.2" path = "../intercom" default-features = false features = [ "generators" ]
Change ruby-sys dependency version to `^0.1.3`
[package] name = "ruru" version = "0.7.0" authors = ["Dmitry Gritsay <unseductable@gmail.com>"] description = "Native Ruby extensions in Rust" documentation = "http://d-unseductable.github.io/ruru/ruru/index.html" homepage = "https://github.com/d-unseductable/ruru" repository = "https://github.com/d-unseductable/ruru" readme = "README.md" keywords = ["ruby", "ruru"] license = "MIT" [dependencies] libc = "0.2.10" ruby-sys = { path = "./ruby-sys", version = "0.1.1" }
[package] name = "ruru" version = "0.7.0" authors = ["Dmitry Gritsay <unseductable@gmail.com>"] description = "Native Ruby extensions in Rust" documentation = "http://d-unseductable.github.io/ruru/ruru/index.html" homepage = "https://github.com/d-unseductable/ruru" repository = "https://github.com/d-unseductable/ruru" readme = "README.md" keywords = ["ruby", "ruru"] license = "MIT" [dependencies] libc = "0.2.10" ruby-sys = { path = "./ruby-sys", version = "^0.1.3" }
Prepare for publish to crates.io
[package] name = "escposify" version = "0.1.0" authors = ["Qian Linfeng <thewawar@gmail.com>"] [dependencies] encoding = "0.2.32" byteorder = "0.5.1" image = "0.9.0" tempfile = "2.1.3"
[package] name = "escposify" version = "0.1.0" description = "A ESC/POS driver for Rust" readme = "README.md" repository = "https://github.com/local-group/escposify-rs" license = "MIT" authors = ["Qian Linfeng <thewawar@gmail.com>"] [dependencies] encoding = "0.2.32" byteorder = "0.5.1" image = "0.9.0" tempfile = "2.1.3"
Switch to external time crate
[package] name = "zip" version = "0.0.1" authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"] [dependencies.flate2] git = "https://github.com/alexcrichton/flate2-rs.git" [[bin]] name = "extract" test = false doc = false [[bin]] name = "write_sample" test = false doc = false
[package] name = "zip" version = "0.0.1" authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"] [dependencies.flate2] git = "https://github.com/alexcrichton/flate2-rs.git" [dependencies.time] git = "http://github.com/rust-lang/time" [[bin]] name = "extract" test = false doc = false [[bin]] name = "write_sample" test = false doc = false
Update ruru version to 0.9.3
[package] name = "trusted" version = "0.4.0" authors = ["Dmitry Gritsay <dmitry@vinted.com>"] [lib] crate-type = ["dylib"] [dependencies] hyper = "0.9.10" hyperlocal = { git = "https://github.com/softprops/hyperlocal.git" } lazy_static = "0.2.1" ruru = "0.9.2"
[package] name = "trusted" version = "0.4.0" authors = ["Dmitry Gritsay <dmitry@vinted.com>"] [lib] crate-type = ["dylib"] [dependencies] hyper = "0.9.10" hyperlocal = { git = "https://github.com/softprops/hyperlocal.git" } lazy_static = "0.2.1" ruru = "0.9.3"
Remove weak feature for compiler-builtins.
[package] authors = [ "Michael Daffin <michael@daffin.io>", "Philipp Oppermann <dev@phil-opp.com>", "Jonathan 'theJPster' Pallant <github@thejpster.org.uk>", "Marc Brinkmann" ] keywords = ["arm", "bare-metal", "blink", "ke06z"] license = "MIT" name = "kinetis-frdm" readme = "README.md" version = "0.1.0" # The development profile, used for `cargo build`. [profile.dev] panic = "abort" # The release profile, used for `cargo build --release`. [profile.release] panic = "abort" debug = true lto = true [dependencies] r0 = "0.1.0" cortex-m = "0.1.5" volatile-register = "0.1.2" embedded-serial = "0.3.0" rlibc = "1.0" alloc-cortex-m = "0.2.0" [dependencies.compiler_builtins] git = "https://github.com/rust-lang-nursery/compiler-builtins" features = [ "weak" ] [dependencies.ke06z] git = "https://github.com/thejpster/ke06z" #path = "../ke06z"
[package] authors = [ "Michael Daffin <michael@daffin.io>", "Philipp Oppermann <dev@phil-opp.com>", "Jonathan 'theJPster' Pallant <github@thejpster.org.uk>", "Marc Brinkmann" ] keywords = ["arm", "bare-metal", "blink", "ke06z"] license = "MIT" name = "kinetis-frdm" readme = "README.md" version = "0.1.0" # The development profile, used for `cargo build`. [profile.dev] panic = "abort" # The release profile, used for `cargo build --release`. [profile.release] panic = "abort" debug = true lto = true [dependencies] r0 = "0.1.0" cortex-m = "0.1.5" volatile-register = "0.1.2" embedded-serial = "0.3.0" rlibc = "1.0" alloc-cortex-m = "0.2.0" [dependencies.compiler_builtins] git = "https://github.com/rust-lang-nursery/compiler-builtins" [dependencies.ke06z] git = "https://github.com/thejpster/ke06z" #path = "../ke06z"
Update nalgebra and ncollide dependencies.
[package] name = "kiss3d" version = "0.14.0" authors = [ "Sébastien Crozet <developer@crozet.re>" ] description = "3D graphics engine for Rust." repository = "https://github.com/sebcrozet/kiss3d" readme = "README.md" keywords = [ "3D", "graphics", "OpenGL", "KISS" ] license = "BSD-3-Clause" include = [ "src/**/*.rs", "examples/**/*.rs", "examples/media", "examples/Cargo.toml", "Cargo.toml", "LICENSE", "Readme.md" ] [lib] name = "kiss3d" path = "src/lib.rs" [dependencies] freetype = "0.3" gl = "0.6" glfw = "0.19" image = "0.17" libc = "0.2" nalgebra = "0.14" ncollide3d = "0.15" num-traits = "0.1" [dev-dependencies] rand = "0.4" ncollide2d = "0.15"
[package] name = "kiss3d" version = "0.14.0" authors = [ "Sébastien Crozet <developer@crozet.re>" ] description = "3D graphics engine for Rust." repository = "https://github.com/sebcrozet/kiss3d" readme = "README.md" keywords = [ "3D", "graphics", "OpenGL", "KISS" ] license = "BSD-3-Clause" include = [ "src/**/*.rs", "examples/**/*.rs", "examples/media", "examples/Cargo.toml", "Cargo.toml", "LICENSE", "Readme.md" ] [lib] name = "kiss3d" path = "src/lib.rs" [dependencies] freetype = "0.3" gl = "0.6" glfw = "0.19" image = "0.17" libc = "0.2" nalgebra = "0.15" ncollide3d = "0.16" num-traits = "0.2" [dev-dependencies] rand = "0.5" ncollide2d = "0.16"
Use latest version of dsp-chain
[package] name = "volume" version = "0.2.1" authors = ["mitchmindtree <mitchell.nordine@gmail.com>"] description = "A simple dsp-chain node for multiplying the amplitude of the output buffer by some volume." readme = "README.md" keywords = ["audio", "dsp", "volume", "amplitude", "node"] license = "MIT" repository = "https://github.com/RustAudio/volume.git" homepage = "https://github.com/RustAudio/volume" [dependencies] dsp-chain = "0.10.0" time_calc = "0.10.0"
[package] name = "volume" version = "0.2.2" authors = ["mitchmindtree <mitchell.nordine@gmail.com>"] description = "A simple dsp-chain node for multiplying the amplitude of the output buffer by some volume." readme = "README.md" keywords = ["audio", "dsp", "volume", "amplitude", "node"] license = "MIT" repository = "https://github.com/RustAudio/volume.git" homepage = "https://github.com/RustAudio/volume" [dependencies] dsp-chain = "0.11.0" time_calc = "0.10.0"
Update the minimum version for hashmap_core.
[package] name = "wasmparser" version = "0.18.1" authors = ["Yury Delendik <ydelendik@mozilla.com>"] license = "Apache-2.0" repository = "https://github.com/yurydelendik/wasmparser.rs" keywords = ["parser", "WebAssembly", "wasm"] description = """ A simple event-driven library for parsing WebAssembly binary files. """ exclude = ["fuzz/**/*", "tests/**/*"] [dependencies] [dependencies.hashmap_core] version = "0.1.1" optional = true [badges] travis-ci = { repository = "yurydelendik/wasmparser.rs" } [features] # The "std" feature enables use of libstd. The "core" feature enables use # of some minimal std-like replacement libraries. At least one of these two # features needs to be enabled. default = ["std"] std = [] core = ["hashmap_core"]
[package] name = "wasmparser" version = "0.18.1" authors = ["Yury Delendik <ydelendik@mozilla.com>"] license = "Apache-2.0" repository = "https://github.com/yurydelendik/wasmparser.rs" keywords = ["parser", "WebAssembly", "wasm"] description = """ A simple event-driven library for parsing WebAssembly binary files. """ exclude = ["fuzz/**/*", "tests/**/*"] [dependencies] [dependencies.hashmap_core] version = "0.1.9" optional = true [badges] travis-ci = { repository = "yurydelendik/wasmparser.rs" } [features] # The "std" feature enables use of libstd. The "core" feature enables use # of some minimal std-like replacement libraries. At least one of these two # features needs to be enabled. default = ["std"] std = [] core = ["hashmap_core"]
Mark as a plugin in the manifest
# Copyright 2014 The Gfx-rs Developers. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [package] name = "gfx_macros" version = "0.1.8" description = "Utility macros for use gfx" homepage = "https://github.com/gfx-rs/gfx_macros" repository = "https://github.com/gfx-rs/gfx_macros" keywords = ["graphics", "gamedev"] license = "Apache-2.0" authors = ["The Gfx-rs Developers"] [lib] name = "gfx_macros" path = "src/lib.rs" crate-type = [ "dylib" ] [dev_dependencies.gfx] git = "https://github.com/gfx-rs/gfx-rs" #version = "0.2.1"
# Copyright 2014 The Gfx-rs Developers. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [package] name = "gfx_macros" version = "0.1.8" description = "Utility macros for use gfx" homepage = "https://github.com/gfx-rs/gfx_macros" repository = "https://github.com/gfx-rs/gfx_macros" keywords = ["graphics", "gamedev"] license = "Apache-2.0" authors = ["The Gfx-rs Developers"] [lib] name = "gfx_macros" path = "src/lib.rs" crate-type = [ "dylib" ] plugin = true [dev_dependencies.gfx] git = "https://github.com/gfx-rs/gfx-rs" #version = "0.2.1"
Build a Rust lib as well
[package] name = "intecture-api" version = "0.0.1" authors = [ "Peter Hayes <peter.hayes@betweenlines.co.uk>" ] license = "Apache-2.0" description = "CLI component for Intecture infrastructure. Intecture is the developer friendly, multi-lingual configuration management tool." keywords = ["intecture", "api"] homepage = "https://intecture.io" repository = "https://github.com/betweenlines/intecture-api" [dependencies] libc = "0.1" zmq = { branch = "feature-socket-convert", git = "https://github.com/petehayes102/rust-zmq.git" } [lib] name = "inapi" crate_type = [ "dylib" ]
[package] name = "intecture-api" version = "0.0.1" authors = [ "Peter Hayes <peter.hayes@betweenlines.co.uk>" ] license = "Apache-2.0" description = "CLI component for Intecture infrastructure. Intecture is the developer friendly, multi-lingual configuration management tool." keywords = ["intecture", "api"] homepage = "https://intecture.io" repository = "https://github.com/betweenlines/intecture-api" [dependencies] libc = "0.1" zmq = { branch = "feature-socket-convert", git = "https://github.com/petehayes102/rust-zmq.git" } [lib] name = "inapi" crate_type = [ "rlib", "dylib" ]
Update to conrod version 0.59.
[package] name = "nannou" version = "0.4.0" authors = ["mitchmindtree <mitchell.nordine@gmail.com>"] description = "A Creative Coding Framework for Rust." readme = "README.md" keywords = ["creative", "sketch", "graphics", "audio"] license = "MIT" repository = "https://github.com/MindBuffer/nannou.git" homepage = "https://github.com/MindBuffer/nannou" [dependencies] cgmath = { version = "0.16", features = ["serde"] } #conrod = { version = "0.58", features = ["winit", "glium"] } conrod = { git = "https://github.com/mitchmindtree/conrod", branch = "winit_glium_update", features = ["winit", "glium"] } cpal = "0.8" daggy = "0.6" find_folder = "0.3" glium = "0.21" image = "0.18" noise = "0.4" palette = "0.2" pennereq = "0.2.0" rand = "0.3" rosc = "0.1" sample = "0.9"
[package] name = "nannou" version = "0.4.0" authors = ["mitchmindtree <mitchell.nordine@gmail.com>"] description = "A Creative Coding Framework for Rust." readme = "README.md" keywords = ["creative", "sketch", "graphics", "audio"] license = "MIT" repository = "https://github.com/MindBuffer/nannou.git" homepage = "https://github.com/MindBuffer/nannou" [dependencies] cgmath = { version = "0.16", features = ["serde"] } conrod = { version = "0.59", features = ["winit", "glium"] } cpal = "0.8" daggy = "0.6" find_folder = "0.3" glium = "0.21" image = "0.18" noise = "0.4" palette = "0.2" pennereq = "0.2.0" rand = "0.3" rosc = "0.1" sample = "0.9"
Remove lib and bin sections
[package] name = "vec-arena" version = "0.0.1" authors = ["Stjepan Glavina <stjepang@gmail.com>"] description = "Arena that allows inserting, removing, and accessing objects by indices" repository = "https://github.com/stjepang/vec-arena" license = "Apache-2.0/MIT" readme = "README.md" # documentation = "TODO: url to docs on github" [lib] name = "vec_arena" path = "src/lib.rs" [[bin]] name = "splay_tree" path = "examples/splay_tree.rs"
[package] name = "vec-arena" version = "0.0.1" authors = ["Stjepan Glavina <stjepang@gmail.com>"] description = "Arena that allows inserting, removing, and accessing objects by indices" repository = "https://github.com/stjepang/vec-arena" documentation = "https://docs.rs/vec-arena" license = "Apache-2.0/MIT" readme = "README.md"
Switch back to official pangocairo lib
[package] name = "xcbars" version = "0.1.0" authors = ["Mitja Karhusaari <monttu300@gmail.com>"] description = "A standalone bar library created with XCB, cairo and pango." repository = "https://github.com/dogamak/xcbars" documentation = "docs.rs/xcbars" license = "Apache-2.0" readme = "README.md" [badges.tarvis-ci] repository = "dogamak/xcbars" [dependencies] cairo-rs = { git = "https://github.com/gtk-rs/cairo.git", features = ["xcb", "png"] } mio = "*" cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo.git", features = ["xcb"] } error-chain = "*" futures = "*" pango = { git = "https://github.com/gtk-rs/pango.git" } pangocairo = { git = "https://github.com/chrisduerr/pangocairo-rs.git" } procinfo = "^0.4.2" tokio-core = "*" tokio-io = "*" tokio-process = "*" tokio-timer = "*" xcb = { git = "https://github.com/rtbo/rust-xcb.git", features = ["randr"] }
[package] name = "xcbars" version = "0.1.0" authors = ["Mitja Karhusaari <monttu300@gmail.com>"] description = "A standalone bar library created with XCB, cairo and pango." repository = "https://github.com/dogamak/xcbars" documentation = "docs.rs/xcbars" license = "Apache-2.0" license-file = "LICENSE" readme = "README.md" [badges.tarvis-ci] repository = "dogamak/xcbars" [dependencies] cairo-rs = { git = "https://github.com/gtk-rs/cairo.git", features = ["xcb", "png"] } mio = "*" cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo.git", features = ["xcb"] } error-chain = "*" futures = "*" pango = { git = "https://github.com/gtk-rs/pango.git" } pangocairo = { git = "https://github.com/razrfalcon/pangocairo-rs.git" } procinfo = "^0.4.2" tokio-core = "*" tokio-io = "*" tokio-process = "*" tokio-timer = "*" xcb = { git = "https://github.com/rtbo/rust-xcb.git", features = ["randr"] }
Update version to 0.1.8 before release.
[package] name = "html2text" version = "0.1.7" authors = ["Chris Emerson <github@mail.nosreme.org>"] description = "Render HTML as plain text." repository = "https://github.com/jugglerchris/rust-html2text/" readme = "README.md" documentation = "https://docs.rs/html2text/" keywords = ["html", "text"] license = "MIT" [badges] travis-ci = { repository = "jugglerchris/rust-html2text" } appveyor = { repository = "jugglerchris/rust-html2text", service = "github" } [dependencies] clippy = { version = "0.0.104", optional=true } html5ever = "0.9" html5ever-atoms = "0.1" string_cache = "0.2.0" unicode-width = "0.1" backtrace = "0.2" [features] html_trace = [] default = [] [[example]] name = "html2term" path = "examples/html2term.rs" [[example]] name = "html2text" path = "examples/html2text.rs" [dev-dependencies] argparse = "0.2" [target.'cfg(unix)'.dev-dependencies] termion = "1.0"
[package] name = "html2text" version = "0.1.8" authors = ["Chris Emerson <github@mail.nosreme.org>"] description = "Render HTML as plain text." repository = "https://github.com/jugglerchris/rust-html2text/" readme = "README.md" documentation = "https://docs.rs/html2text/" keywords = ["html", "text"] license = "MIT" [badges] travis-ci = { repository = "jugglerchris/rust-html2text" } appveyor = { repository = "jugglerchris/rust-html2text", service = "github" } [dependencies] clippy = { version = "0.0.104", optional=true } html5ever = "0.9" html5ever-atoms = "0.1" string_cache = "0.2.0" unicode-width = "0.1" backtrace = "0.2" [features] html_trace = [] default = [] [[example]] name = "html2term" path = "examples/html2term.rs" [[example]] name = "html2text" path = "examples/html2text.rs" [dev-dependencies] argparse = "0.2" [target.'cfg(unix)'.dev-dependencies] termion = "1.0"
Update syn related dependencies to 1.0 and bump version
[package] name = "string_cache_codegen" version = "0.4.3" # Also update ../README.md when making a semver-breaking change authors = [ "The Servo Project Developers" ] description = "A codegen library for string-cache, developed as part of the Servo project." license = "MIT / Apache-2.0" repository = "https://github.com/servo/string-cache" documentation = "https://docs.rs/string_cache_codegen/" [lib] name = "string_cache_codegen" path = "lib.rs" [dependencies] string_cache_shared = {path = "../shared", version = "0.3"} phf_generator = "0.7.15" phf_shared = "0.7.4" proc-macro2 = "0.4" quote = "0.6"
[package] name = "string_cache_codegen" version = "0.4.4" # Also update ../README.md when making a semver-breaking change authors = [ "The Servo Project Developers" ] description = "A codegen library for string-cache, developed as part of the Servo project." license = "MIT / Apache-2.0" repository = "https://github.com/servo/string-cache" documentation = "https://docs.rs/string_cache_codegen/" [lib] name = "string_cache_codegen" path = "lib.rs" [dependencies] string_cache_shared = {path = "../shared", version = "0.3"} phf_generator = "0.7.15" phf_shared = "0.7.4" proc-macro2 = "1" quote = "1"
Enable raw HTML for Goldmark
baseurl = "https://alexj.org" title = "Alex J" paginate = 5 pygmentsuseclasses = false pygmentscodefences = true pygmentsstyle = "manni" [author] name = "Alex Jackson" email = "alex@alexj.org" [taxonomies] tag = "tags" [permalinks] post = "/:month/:filename/"
baseurl = "https://alexj.org" title = "Alex J" paginate = 5 pygmentsuseclasses = false pygmentscodefences = true pygmentsstyle = "manni" [author] name = "Alex Jackson" email = "alex@alexj.org" [taxonomies] tag = "tags" [permalinks] post = "/:month/:filename/" [markup.goldmark.renderer] unsafe = true
Set Kodiak to auto-approve Dependabot PRs
version = 1 [merge] merge.method = "rebase"
version = 1 [merge] merge.method = "rebase" [approve] auto_approve_usernames = ["dependabot"]
Bump reqwest: 0.6 -> 0.8
[package] name = "rss" version = "1.3.0" authors = ["James Hurst <jh.jameshurst@gmail.com>", "Corey Farwell <coreyf@rwell.org>", "Chris Palmer <pennstate5013@gmail.com>"] description = "Library for serializing the RSS web content syndication format" repository = "https://github.com/rust-syndication/rss" documentation = "https://docs.rs/rss/" license = "MIT/Apache-2.0" readme = "README.md" keywords = ["rss", "feed", "parser", "parsing"] include = ["src/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"] [features] from_url = ["reqwest"] validation = ["chrono", "url", "mime"] [dependencies] failure = "0.1" quick-xml = "0.12.0" derive_builder = "0.5" chrono = {version = "0.4", optional = true } url = { version = "1.4", optional = true } mime = { version = "0.3", optional = true } reqwest = { version = "0.6", optional = true } serde = { version = "1.0", optional = true, features = ["derive"] }
[package] name = "rss" version = "1.3.0" authors = ["James Hurst <jh.jameshurst@gmail.com>", "Corey Farwell <coreyf@rwell.org>", "Chris Palmer <pennstate5013@gmail.com>"] description = "Library for serializing the RSS web content syndication format" repository = "https://github.com/rust-syndication/rss" documentation = "https://docs.rs/rss/" license = "MIT/Apache-2.0" readme = "README.md" keywords = ["rss", "feed", "parser", "parsing"] include = ["src/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"] [features] from_url = ["reqwest"] validation = ["chrono", "url", "mime"] [dependencies] failure = "0.1" quick-xml = "0.12.0" derive_builder = "0.5" chrono = {version = "0.4", optional = true } url = { version = "1.4", optional = true } mime = { version = "0.3", optional = true } reqwest = { version = "0.8", optional = true } serde = { version = "1.0", optional = true, features = ["derive"] }
Make teapot the name of the binary
[package] name = "teapot" version = "0.0.1" authors = ["Prajjwal Bhandari <pbhandari@pbhandari.ca>"]
[package] name = "teapot" version = "0.0.1" authors = ["Prajjwal Bhandari <pbhandari@pbhandari.ca>"] [[bin]] name = "teapot"
Switch to 0.3 compiletest (instead of *)
[package] name = "tag_safe" description = "A rustc lint plugin to allow tagging of methods with arbitary safety flags" version = "0.2.21" authors = ["John Hodge <mutabah@mutabah.net>"] repository = "http://github.com/thepowersgang/tag_safe/" keywords = ["plugin", "lint"] license = "MIT" [lib] name = "tag_safe" path = "src/lib.rs" plugin = true [dependencies] lazy_static = "0.2.2" log = "0.3" [dev-dependencies] compiletest_rs = { default-features = false, version = "*", features = ["stable"] }
[package] name = "tag_safe" description = "A rustc lint plugin to allow tagging of methods with arbitary safety flags" version = "0.2.21" authors = ["John Hodge <mutabah@mutabah.net>"] repository = "http://github.com/thepowersgang/tag_safe/" keywords = ["plugin", "lint"] license = "MIT" [lib] name = "tag_safe" path = "src/lib.rs" plugin = true [dependencies] lazy_static = "0.2.2" log = "0.3" [dev-dependencies] compiletest_rs = { default-features = false, version = "0.3", features = ["stable"] }
Update obj-rs requirement from 0.5 to 0.6
[package] name = "bvh" description = "A fast BVH using SAH" version = "0.3.2" edition = "2018" authors = [ "Sven-Hendrik Haase <svenstaro@gmail.com>", "Alexander Dmitriev <alexander.dmitriev2580@gmail.com>" ] readme = "README.md" repository = "https://github.com/svenstaro/bvh" documentation = "https://docs.rs/crate/bvh" keywords = ["bvh", "bounding", "volume", "sah", "aabb"] license = "MIT" [dependencies] approx = "0.3" nalgebra = "0.20" rand = "0.7" log = "0.4" num = "0.2" [dev-dependencies] quickcheck = "0.9" obj-rs = "0.5" [features] bench = [] [profile.release] lto = true [profile.bench] lto = true
[package] name = "bvh" description = "A fast BVH using SAH" version = "0.3.2" edition = "2018" authors = [ "Sven-Hendrik Haase <svenstaro@gmail.com>", "Alexander Dmitriev <alexander.dmitriev2580@gmail.com>" ] readme = "README.md" repository = "https://github.com/svenstaro/bvh" documentation = "https://docs.rs/crate/bvh" keywords = ["bvh", "bounding", "volume", "sah", "aabb"] license = "MIT" [dependencies] approx = "0.3" nalgebra = "0.20" rand = "0.7" log = "0.4" num = "0.2" [dev-dependencies] quickcheck = "0.9" obj-rs = "0.6" [features] bench = [] [profile.release] lto = true [profile.bench] lto = true
Update dependencies. cppn version 0.1.2
[package] name = "cppn" version = "0.1.1" authors = ["Michael Neumann <mneumann@ntecs.de>"] license = "MIT" repository = "https://github.com/mneumann/cppn-rs" description = "Compositional Pattern Producing Networks" keywords = ["evolution", "neuro", "net", "cppn"] include = ["src/*.rs", "Cargo.toml", "LICENSE", "README.md"] [dependencies] acyclic-network = "0.0.1" fixedbitset = "0.1.0" [dev-dependencies] rand = "0.3"
[package] name = "cppn" version = "0.1.2" authors = ["Michael Neumann <mneumann@ntecs.de>"] license = "MIT" repository = "https://github.com/mneumann/cppn-rs" description = "Compositional Pattern Producing Networks" keywords = ["evolution", "neuro", "net", "cppn"] include = ["src/*.rs", "Cargo.toml", "LICENSE", "README.md"] [dependencies] acyclic-network = "0.1" fixedbitset = "0.1" [dev-dependencies] rand = "0.3"
Update cbindgen requirement from 0.17.0 to 0.18.0
[package] name = "polylabel" version = "2.4.0" authors = ["Stephan Hügel <urschrei@gmail.com>"] description = "A Rust implementation of the Polylabel algorithm for finding optimum polygon label positions." readme = "README.md" keywords = ["geo", "polylabel", "gis"] repository = "https://github.com/urschrei/polylabel-rs" license = "MIT" edition = "2018" # build = "src/build.rs" [dependencies] libc = "0.2.29" geo = "0.17.0" num-traits = "0.2.8" thiserror = "1.0.4" [build-dependencies] cbindgen = "0.17.0" [dev-dependencies] criterion = "0.3.0" [lib] name = "polylabel" crate-type = ["rlib", "cdylib"] test = true doctest = true doc = true [profile.release] rpath = true lto = true [[bench]] name = "benchmark" harness = false
[package] name = "polylabel" version = "2.4.0" authors = ["Stephan Hügel <urschrei@gmail.com>"] description = "A Rust implementation of the Polylabel algorithm for finding optimum polygon label positions." readme = "README.md" keywords = ["geo", "polylabel", "gis"] repository = "https://github.com/urschrei/polylabel-rs" license = "MIT" edition = "2018" # build = "src/build.rs" [dependencies] libc = "0.2.29" geo = "0.17.0" num-traits = "0.2.8" thiserror = "1.0.4" [build-dependencies] cbindgen = "0.18.0" [dev-dependencies] criterion = "0.3.0" [lib] name = "polylabel" crate-type = ["rlib", "cdylib"] test = true doctest = true doc = true [profile.release] rpath = true lto = true [[bench]] name = "benchmark" harness = false
Set doc.rs metadata to pass system cargo feature.
[package] name = "libffi" version = "0.7.1-alpha.0" authors = ["Jesse A. Tov <jesse.tov@gmail.com>"] description = "Rust bindings for libffi" repository = "https://github.com/tov/libffi-rs" readme = "README.md" license = "MIT/Apache-2.0" keywords = ["ffi", "libffi", "closure", "c"] categories = ["development-tools::ffi"] [badges] travis-ci = { repository = "tov/libffi-rs" } [features] complex = [] system = ["libffi-sys/system"] [dependencies] libffi-sys = "0.8.0" abort_on_panic = "2.0.0" libc = "0.2.65"
[package] name = "libffi" version = "0.7.1-alpha.0" authors = ["Jesse A. Tov <jesse.tov@gmail.com>"] description = "Rust bindings for libffi" repository = "https://github.com/tov/libffi-rs" readme = "README.md" license = "MIT/Apache-2.0" keywords = ["ffi", "libffi", "closure", "c"] categories = ["development-tools::ffi"] [badges] travis-ci = { repository = "tov/libffi-rs" } [dependencies] libffi-sys = "0.8.0" abort_on_panic = "2.0.0" libc = "0.2.65" [features] complex = [] system = ["libffi-sys/system"] [package.metadata.docs.rs] features = ["system"]
Modify package informations before publishing
[package] name = "snatch" version = "0.1.2" authors = ["Antonin Carette <antonin@derniercri.io", "Jean-Serge Monbailly <jean-serge@derniercri.io>"] description = "A simple, fast and interruptable download accelerator" [lib] name = "libsnatch" path = "src/lib.rs" [[bin]] name = "snatch" path = "src/main.rs" [dependencies] ansi_term = "0.9.0" clap = "2.20.0" hyper = "0.9" pbr = "1.0.0-alpha.2" num_cpus = "1.0" [profile.dev] opt-level = 0 debug = true rpath = false lto = false debug-assertions = true panic = 'unwind' [profile.release] opt-level = 3 debug = false rpath = false lto = false debug-assertions = false panic = 'unwind' [profile.test] opt-level = 0 debug = true rpath = false lto = false debug-assertions = true panic = 'unwind'
[package] name = "snatch" version = "0.1.2" authors = ["Antonin Carette <antonin@derniercri.io", "Jean-Serge Monbailly <jean-serge@derniercri.io>"] description = "A simple and fast download accelerator" repository = "https://github.com/derniercri/snatch" license = "MIT" [lib] name = "libsnatch" path = "src/lib.rs" [[bin]] name = "snatch" path = "src/main.rs" [dependencies] ansi_term = "0.9.0" clap = "2.20.0" hyper = "0.9" pbr = "1.0.0-alpha.2" num_cpus = "1.0" [profile.dev] opt-level = 0 debug = true rpath = false lto = false debug-assertions = true panic = 'unwind' [profile.release] opt-level = 3 debug = false rpath = false lto = false debug-assertions = false panic = 'unwind' [profile.test] opt-level = 0 debug = true rpath = false lto = false debug-assertions = true panic = 'unwind'
Use clippy from git repo
[package] name = "mysteryshack" version = "0.1.0" authors = ["Markus Unterwaditzer <markus@unterwaditzer.net>"] license = "MIT" keywords = ["remotestorage"] readme = "README.md" [lib] name = "mysteryshack" path = "src/mysteryshack/lib.rs" [[bin]] name = "mysteryshack" test = false doc = false [dependencies] rustc-serialize = "*" iron = "*" router = "*" hyper = "*" toml = "*" unicase = "*" atomicwrites = "*" url = "*" clap = "*" rust-crypto = "*" rand = "*" persistent = "*" urlencoded = "*" handlebars-iron = "*" handlebars = "*" regex = "*" iron-login = "*" quick-error = "*" staticfile = {version = "*", features = ["cache"]} mount = "*" time = "*" filetime = "*" chrono = "*" nix = "*" itertools = "*" jsonwebtoken = "*" uuid = "*" clippy = {version = "*", optional = true} [dev-dependencies] tempdir = "*" [features] default = []
[package] name = "mysteryshack" version = "0.1.0" authors = ["Markus Unterwaditzer <markus@unterwaditzer.net>"] license = "MIT" keywords = ["remotestorage"] readme = "README.md" [lib] name = "mysteryshack" path = "src/mysteryshack/lib.rs" [[bin]] name = "mysteryshack" test = false doc = false [dependencies] rustc-serialize = "*" iron = "*" router = "*" hyper = "*" toml = "*" unicase = "*" atomicwrites = "*" url = "*" clap = "*" rust-crypto = "*" rand = "*" persistent = "*" urlencoded = "*" handlebars-iron = "*" handlebars = "*" regex = "*" iron-login = "*" quick-error = "*" staticfile = {version = "*", features = ["cache"]} mount = "*" time = "*" filetime = "*" chrono = "*" nix = "*" itertools = "*" jsonwebtoken = "*" uuid = "*" clippy = {git = "https://github.com/Manishearth/rust-clippy", version = "*", optional = true} [dev-dependencies] tempdir = "*" [features] default = []
Update cargo file to include a better E-Mail adress.
[package] name = "sogo" version = "0.1.0" authors = ["Rolf Sievers <rosievers@googlemail.com>"] [dependencies] rand = "*"
[package] name = "sogo" version = "0.1.0" authors = ["Rolf Sievers <rolf.sievers@posteo.de>"] [dependencies] rand = "*"
Update parking_lot requirement from 0.8 to 0.9
[package] name = "rust-web-boilerplate" version = "0.1.0" authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"] edition = "2018" [lib] name = "rust_web_boilerplate" path = "src/lib.rs" [dependencies] uuid = { version = "0.7", features = ["serde", "v4"] } chrono = { version = "0.4", features = ["serde"] } argon2rs = "0.2" rocket = "0.4" diesel = { version = "1.4", features = ["postgres", "uuidv07", "chrono", "serde_json"] } dotenv = "0.14" serde = "1" serde_json = "1" serde_derive = "1" validator = "0.8" validator_derive = "0.8" ring = "0.13" rand = "0.7" [dev-dependencies] quickcheck = "0.8" speculate = "0.1" parking_lot = { version = "0.8", features = ["nightly"] } [dependencies.rocket_contrib] version = "0.4" default-features = false features = ["json", "diesel_postgres_pool"] [features] default = []
[package] name = "rust-web-boilerplate" version = "0.1.0" authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"] edition = "2018" [lib] name = "rust_web_boilerplate" path = "src/lib.rs" [dependencies] uuid = { version = "0.7", features = ["serde", "v4"] } chrono = { version = "0.4", features = ["serde"] } argon2rs = "0.2" rocket = "0.4" diesel = { version = "1.4", features = ["postgres", "uuidv07", "chrono", "serde_json"] } dotenv = "0.14" serde = "1" serde_json = "1" serde_derive = "1" validator = "0.8" validator_derive = "0.8" ring = "0.13" rand = "0.7" [dev-dependencies] quickcheck = "0.8" speculate = "0.1" parking_lot = { version = "0.9", features = ["nightly"] } [dependencies.rocket_contrib] version = "0.4" default-features = false features = ["json", "diesel_postgres_pool"] [features] default = []
Remove `pretty` feature from `syn` to speed-up build
[package] name = "easter" version = "0.0.5" authors = ["Dave Herman <dherman@mozilla.com>"] license = "MIT" description = "Type definitions for ECMAScript abstract syntax trees." documentation = "https://esprit.surge.sh" homepage = "https://esprit.surge.sh" repository = "https://github.com/dherman/esprit" build = "build.rs" [dependencies] joker = { version = "0.0.5", path = "../joker" } tristate = "0.1.1" [build-dependencies] syn = { version = "0.10.5", features = ["parsing", "printing", "expand", "pretty"] } quote = "0.3.10"
[package] name = "easter" version = "0.0.5" authors = ["Dave Herman <dherman@mozilla.com>"] license = "MIT" description = "Type definitions for ECMAScript abstract syntax trees." documentation = "https://esprit.surge.sh" homepage = "https://esprit.surge.sh" repository = "https://github.com/dherman/esprit" build = "build.rs" [dependencies] joker = { version = "0.0.5", path = "../joker" } tristate = "0.1.1" [build-dependencies] syn = { version = "0.10.5", features = ["parsing", "printing", "expand"] } quote = "0.3.10"
Move back to weld repo
[package] name = "weld_java" version = "0.1.0" authors = ["Herman van Hovell <hvanhovell@databricks.com>"] [dependencies] libc = "0.2.0" weld = { git = "https://github.com/hvanhovell/weld", branch = "static-weldrt" } jni = { git = "https://github.com/prevoty/jni-rs" } regex = "*" [lib] path = "src/main/rust/lib.rs" crate-type = ["cdylib", "rlib"] bench = false
[package] name = "weld_java" version = "0.1.0" authors = ["Herman van Hovell <hvanhovell@databricks.com>"] [dependencies] libc = "0.2.0" weld = { git = "https://github.com/weld-project/weld" } jni = { git = "https://github.com/prevoty/jni-rs" } regex = "*" [lib] path = "src/main/rust/lib.rs" crate-type = ["cdylib", "rlib"] bench = false
Include `pycroft/lib/host.py` in mypy checks
[build-system] requires = [ "setuptools>=42", "wheel" ] build-backend = "setuptools.build_meta" [tool.mypy] plugins = "sqlalchemy.ext.mypy.plugin" python_version = "3.10" follow_imports = "silent" ignore_missing_imports = true # this list shall slowly grow until it covers the whole codebase. files = [ "pycroft/helpers/i18n.py", ] mypy_path = "stubs" namespace_packages = true check_untyped_defs = true warn_return_any = true warn_unused_ignores = true
[build-system] requires = [ "setuptools>=42", "wheel" ] build-backend = "setuptools.build_meta" [tool.mypy] plugins = "sqlalchemy.ext.mypy.plugin" python_version = "3.10" follow_imports = "silent" ignore_missing_imports = true # this list shall slowly grow until it covers the whole codebase. files = [ "pycroft/helpers/i18n.py", "pycroft/lib/host.py", ] mypy_path = "stubs" namespace_packages = true check_untyped_defs = true warn_return_any = true warn_unused_ignores = true
Update dependency: fs2 0.2.2 -> 0.2.*
[package] name = "libimagstorestdhook" version = "0.1.0" authors = ["Matthias Beyer <mail@beyermatthias.de>"] [dependencies] toml = "0.1.25" log = "0.3" fs2 = "0.2.3" [dependencies.libimagstore] path = "../libimagstore" [dependencies.libimagentrylink] path = "../libimagentrylink" [dependencies.libimagerror] path = "../libimagerror"
[package] name = "libimagstorestdhook" version = "0.1.0" authors = ["Matthias Beyer <mail@beyermatthias.de>"] [dependencies] toml = "0.1.25" log = "0.3" fs2 = "0.2" [dependencies.libimagstore] path = "../libimagstore" [dependencies.libimagentrylink] path = "../libimagentrylink" [dependencies.libimagerror] path = "../libimagerror"
Revert "Upgrade to windows-sys v0.42.0"
[package] name = "open" version = "3.1.0" authors = ["Sebastian Thiel <byronimo@gmail.com>"] license = "MIT" edition = "2018" readme = "README.md" description = "Open a path or URL using the program configured on the system" repository = "https://github.com/Byron/open-rs" keywords = ["open", "xdg-open", "start", "launch"] include = ["src/**/*", "LICENSE.md", "README.md", "changelog.md"] [[bin]] test = false doc = false name = "open" [target.'cfg(windows)'.dependencies] windows-sys = { version = "0.42", features = ["Win32_UI_Shell", "Win32_Foundation"] } [target.'cfg(all(unix, not(macos)))'.dependencies] pathdiff = "0.2.0"
[package] name = "open" version = "3.1.0" authors = ["Sebastian Thiel <byronimo@gmail.com>"] license = "MIT" edition = "2018" readme = "README.md" description = "Open a path or URL using the program configured on the system" repository = "https://github.com/Byron/open-rs" keywords = ["open", "xdg-open", "start", "launch"] include = ["src/**/*", "LICENSE.md", "README.md", "changelog.md"] [[bin]] test = false doc = false name = "open" [target.'cfg(windows)'.dependencies] windows-sys = { version = "0.36", features = ["Win32_UI_Shell", "Win32_Foundation"] } [target.'cfg(all(unix, not(macos)))'.dependencies] pathdiff = "0.2.0"
Update jemallocator requirement from 0.1 to 0.3
[package] name = "tests" version = "0.1.0" authors = ["Tyler Neely <t@jujit.su>"] publish = false edition = "2018" [dependencies] quickcheck = "0.8" rand = "0.6" log = "0.4" env_logger = "0.6" libc = "0.2" fail = "0.3" lazy_static = "1.0" color-backtrace = "0.2.0" [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies] jemallocator = "0.1" [dependencies.serde] version = "1.0.90" features = ["derive"] [dependencies.pagecache] features = ["failpoints", "lock_free_delays", "event_log", "no_metrics"] path = "../crates/pagecache" [dependencies.sled] features = ["failpoints", "lock_free_delays", "event_log", "no_metrics", "check_snapshot_integrity", "compression"] path = "../crates/sled"
[package] name = "tests" version = "0.1.0" authors = ["Tyler Neely <t@jujit.su>"] publish = false edition = "2018" [dependencies] quickcheck = "0.8" rand = "0.6" log = "0.4" env_logger = "0.6" libc = "0.2" fail = "0.3" lazy_static = "1.0" color-backtrace = "0.2.0" [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies] jemallocator = "0.3" [dependencies.serde] version = "1.0.90" features = ["derive"] [dependencies.pagecache] features = ["failpoints", "lock_free_delays", "event_log", "no_metrics"] path = "../crates/pagecache" [dependencies.sled] features = ["failpoints", "lock_free_delays", "event_log", "no_metrics", "check_snapshot_integrity", "compression"] path = "../crates/sled"
Use the new const_mut_refs default feature of linked_list_allocator
[package] name = "lang_items" version = "0.1.0" authors = [ "Tock Project Developers <tock-dev@googlegroups.com>", "Guillaume Endignoux <guillaumee@google.com>", ] license = "MIT/Apache-2.0" edition = "2018" [dependencies] libtock_core = { path = "../../third_party/libtock-rs/core", default-features = false, features = ["alloc_init", "custom_panic_handler", "custom_alloc_error_handler"] } libtock_drivers = { path = "../libtock-drivers" } linked_list_allocator = { version = "=0.8.1", default-features = false } [features] debug_allocations = [] panic_console = [] std = []
[package] name = "lang_items" version = "0.1.0" authors = [ "Tock Project Developers <tock-dev@googlegroups.com>", "Guillaume Endignoux <guillaumee@google.com>", ] license = "MIT/Apache-2.0" edition = "2018" [dependencies] libtock_core = { path = "../../third_party/libtock-rs/core", default-features = false, features = ["alloc_init", "custom_panic_handler", "custom_alloc_error_handler"] } libtock_drivers = { path = "../libtock-drivers" } linked_list_allocator = { version = "0.8.7", default-features = false, features = ["const_mut_refs"] } [features] debug_allocations = [] panic_console = [] std = []
Allow doc generation to succeed
[package] name = "human_name" version = "0.0.1" authors = ["David Judd <david@academia.edu>"] [dependencies] itertools = "0.4.*" unicode-segmentation = "0.1.*" unicode-normalization = "0.1.*" rustc-serialize = "0.3.*" phf = "0.7.*" phf_macros = "0.7.*" [features] default = ["name_eq_hash"] name_eq_hash = [] [profile.release] debug = true
[package] name = "human_name" version = "0.0.1" authors = ["David Judd <david@academia.edu>"] [dependencies] itertools = "0.4.*" unicode-segmentation = "0.1.*" unicode-normalization = "0.1.*" rustc-serialize = "0.3.*" phf = "0.7.*" phf_macros = "0.7.*" [features] default = ["name_eq_hash"] name_eq_hash = [] [profile.release] debug = true [[bin]] name = "human_name" doc = false
Add description to `protos` crate.
[package] name = "protos" version = "0.1.0" authors = ["Paul Hauner <paul@paulhauner.com>"] edition = "2018" [dependencies] futures = "0.1.16" grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] } protobuf = "2.0.2" [build-dependencies] protoc-grpcio = "0.3.1"
[package] name = "protos" version = "0.1.0" authors = ["Paul Hauner <paul@paulhauner.com>"] edition = "2018" description = "Google protobuf message and service definitions used in Lighthouse APIs." [dependencies] futures = "0.1.16" grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] } protobuf = "2.0.2" [build-dependencies] protoc-grpcio = "0.3.1"
Add orka_gltf to list of executables
name = "orka_tools" description = "Tools for the Orka rendering kernel" version = "0.2.0" website = "https://github.com/onox/orka" licenses = "Apache-2.0" tags = ["gltf", "ktx", "opengl", "orka"] authors = ["onox"] maintainers = ["onox <denkpadje@gmail.com>"] maintainers-logins = ["onox"] executables = ["orka_info", "orka_ktx"] [[depends-on]] orka_glfw = "^1.0.0" orka_plugin_gltf = "^1.0.0"
name = "orka_tools" description = "Tools for the Orka rendering kernel" version = "0.2.0" website = "https://github.com/onox/orka" licenses = "Apache-2.0" tags = ["gltf", "ktx", "opengl", "orka"] authors = ["onox"] maintainers = ["onox <denkpadje@gmail.com>"] maintainers-logins = ["onox"] executables = ["orka_info", "orka_gltf", "orka_ktx"] [[depends-on]] orka_glfw = "^1.0.0" orka_plugin_gltf = "^1.0.0"
Add keywords to cargo manifest
[package] name = "mysql" version = "0.0.1" authors = ["blackbeam"] description = "Mysql client library implemented in rust" license = "MIT" documentation = "http://blackbeam.org/doc/mysql/index.html" repository = "https://github.com/blackbeam/rust-mysql-simple" exclude = ["tests/*", ".*", "Makefile"] [lib] name = "mysql" crate_type = ["rlib", "dylib"] path = "src/lib.rs" [profile.dev] opt-level = 0 debug = true [profile.release] opt-level = 3 debug = false [profile.test] opt-level = 0 debug = true [profile.bench] opt-level = 3 debug = false [profile.doc] opt-level = 0 debug = true [features] default = ["ssl"] ssl = ["openssl"] [dependencies.lazy_static] lazy_static = "~0.1.1" [dependencies.openssl] git = "https://github.com/sfackler/rust-openssl" optional = true [dependencies.time] time = "~0.0.3"
[package] name = "mysql" version = "0.0.1" authors = ["blackbeam"] description = "Mysql client library implemented in rust" license = "MIT" documentation = "http://blackbeam.org/doc/mysql/index.html" repository = "https://github.com/blackbeam/rust-mysql-simple" keywords = ["database", "sql"] exclude = ["tests/*", ".*", "Makefile"] [lib] name = "mysql" crate_type = ["rlib", "dylib"] path = "src/lib.rs" [profile.dev] opt-level = 0 debug = true [profile.release] opt-level = 3 debug = false [profile.test] opt-level = 0 debug = true [profile.bench] opt-level = 3 debug = false [profile.doc] opt-level = 0 debug = true [features] default = ["ssl"] ssl = ["openssl"] [dependencies.lazy_static] lazy_static = "~0.1.1" [dependencies.openssl] git = "https://github.com/sfackler/rust-openssl" optional = true [dependencies.time] time = "~0.0.3"
Add README and badge to crates.io
[package] name = "built" version = "0.2.2" description = "Provides a crate with information from the time it was built." repository = "https://github.com/lukaslueg/built" documentation = "https://docs.rs/built" authors = ["Lukas Lueg <lukas.lueg@gmail.com>"] license = "MIT" keywords = ["cargo", "build"] [features] default = ["serialized_git", "serialized_time", "serialized_version"] serialized_git = ["git2"] serialized_time = ["time"] serialized_version = ["semver"] [dependencies] toml = "0.4" semver = { version="0.9", optional=true } time = { version="0.1", optional=true } git2 = { version="0.6", optional=true, default-features = false, features = [] } [dev-dependencies] tempdir = "0.3" semver = "0.9" time = "0.1" git2 = "0.6"
[package] name = "built" version = "0.2.3" description = "Provides a crate with information from the time it was built." repository = "https://github.com/lukaslueg/built" documentation = "https://docs.rs/built" authors = ["Lukas Lueg <lukas.lueg@gmail.com>"] license = "MIT" readme = "README.md" keywords = ["cargo", "build"] [badges] travis-ci = { repository = "lukaslueg/built" } [features] default = ["serialized_git", "serialized_time", "serialized_version"] serialized_git = ["git2"] serialized_time = ["time"] serialized_version = ["semver"] [dependencies] toml = "0.4" semver = { version="0.9", optional=true } time = { version="0.1", optional=true } git2 = { version="0.6", optional=true, default-features = false, features = [] } [dev-dependencies] tempdir = "0.3" semver = "0.9" time = "0.1" git2 = "0.6"
Set target-version = ["py37", "py38"]
[tool.black] line-length = 120 py36 = false include = '\.pyi?$' exclude = ''' /( \.git | build | dist )/ '''
[tool.black] line-length = 120 target-version = ["py37", "py38"] include = '\.pyi?$' exclude = ''' /( \.git | build | dist )/ '''
Update to the latest version of gfx_texture (upated due to UpdateTexture::update api change). Breaking change.
[package] name = "piston2d-gfx_graphics" version = "0.30.0" authors = ["bvssvni <bvssvni@gmail.com>"] keywords = ["graphics", "2d", "gfx", "piston"] description = "A Gfx 2D back-end for the Piston game engine" license = "MIT" readme = "README.md" repository = "https://github.com/PistonDevelopers/gfx_graphics.git" homepage = "https://github.com/PistonDevelopers/gfx_graphics" [lib] name = "gfx_graphics" [dependencies] rusttype = "0.2.0" gfx = "0.12.0" draw_state = "0.6.0" piston-shaders_graphics2d = "0.2.1" piston-gfx_texture = "0.16.0" piston2d-graphics = "0.16.0" shader_version = "0.2.1" [dev-dependencies] pistoncore-glutin_window = "0.28.0" piston = "0.24.0" find_folder = "0.3.0" gfx_device_gl = "0.11.0" gfx_core = "0.4.0"
[package] name = "piston2d-gfx_graphics" version = "0.31.0" authors = ["bvssvni <bvssvni@gmail.com>"] keywords = ["graphics", "2d", "gfx", "piston"] description = "A Gfx 2D back-end for the Piston game engine" license = "MIT" readme = "README.md" repository = "https://github.com/PistonDevelopers/gfx_graphics.git" homepage = "https://github.com/PistonDevelopers/gfx_graphics" [lib] name = "gfx_graphics" [dependencies] rusttype = "0.2.0" gfx = "0.12.0" draw_state = "0.6.0" piston-shaders_graphics2d = "0.2.1" piston-gfx_texture = "0.17.0" piston2d-graphics = "0.16.1" shader_version = "0.2.1" [dev-dependencies] pistoncore-glutin_window = "0.28.0" piston = "0.24.0" find_folder = "0.3.0" gfx_device_gl = "0.11.0" gfx_core = "0.4.0"
Update bindgen requirement from 0.57 to 0.58 in /fitsio-sys-bindgen
[package] name = "fitsio-sys-bindgen" edition = "2018" version = "0.0.2" authors = ["Simon Walker <s.r.walker101@googlemail.com>"] description = "FFI wrapper around cfitsio" homepage = "https://github.com/mindriot101/rust-fitsio" repository = "https://github.com/mindriot101/rust-fitsio" readme = "README.md" license = "MIT/Apache-2.0" build = "build.rs" documentation = "https://docs.rs/fitsio-sys-bindgen" categories = ["external-ffi-bindings", "science"] [dependencies] libc = "0" block = "0" [dev-dependencies] tempfile = "3.1.0" [build-dependencies] pkg-config = "0" bindgen = "0.57" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
[package] name = "fitsio-sys-bindgen" edition = "2018" version = "0.0.2" authors = ["Simon Walker <s.r.walker101@googlemail.com>"] description = "FFI wrapper around cfitsio" homepage = "https://github.com/mindriot101/rust-fitsio" repository = "https://github.com/mindriot101/rust-fitsio" readme = "README.md" license = "MIT/Apache-2.0" build = "build.rs" documentation = "https://docs.rs/fitsio-sys-bindgen" categories = ["external-ffi-bindings", "science"] [dependencies] libc = "0" block = "0" [dev-dependencies] tempfile = "3.1.0" [build-dependencies] pkg-config = "0" bindgen = "0.58" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
Update hugo version on Netlify
[build] command = "npm run build" publish = "dist" [context.production.environment] HUGO_VERSION = "0.42" HUGO_ENV = "production" HUGO_ENABLEGITINFO = "true" [context.deploy-preview] command = "npm run build-preview" [context.deploy-preview.environment] HUGO_VERSION = "0.42"
[build] command = "npm run build" publish = "dist" [context.production.environment] HUGO_VERSION = "0.42.2" HUGO_ENV = "production" HUGO_ENABLEGITINFO = "true" [context.deploy-preview] HUGO_VERSION = "0.42.2" [context.deploy-preview.environment] HUGO_VERSION = "0.42.2"
Enable the Starship Kubernetes module
[git_status] deleted = "x" [golang] symbol = "💨 " [nodejs] symbol = "📦 " [package] symbol = "" [directory] prefix = "🔥 " truncation_length = 8 [hostname] style = "bold green" disabled = true [username] show_always = true [memory_usage] disabled = false show_percentage = true style = "bold white" threshold = 50
[git_status] deleted = "x" [golang] symbol = "💨 " [nodejs] symbol = "📦 " [package] symbol = "" [directory] prefix = "🔥 " truncation_length = 8 [hostname] style = "bold green" disabled = true [username] show_always = true [memory_usage] disabled = false show_percentage = true style = "bold white" threshold = 50 [kubernetes] disabled = false symbol = "💀 " style = "bold white"
Update list of allowed licenses
# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [licenses] allow = [ "Apache-2.0", "MIT", "MPL-2.0", ]
# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [licenses] allow = [ "Apache-2.0", "MIT", "MPL-2.0", "Unicode-DFS-2016", ]
Use latest crates.io deps, increment version
[package] name = "elmesque" version = "0.1.0" authors = ["mitchmindtree <mitchell.nordine@gmail.com>"] description = "An attempt at porting Elm's incredibly useful, purely functional std graphics modules." readme = "README.md" keywords = ["elm", "graphics", "2d", "ui", "shape"] license = "MIT" repository = "https://github.com/mitchmindtree/elmesque.git" homepage = "https://github.com/mitchmindtree/elmesque" [dependencies] num = "*" piston2d-graphics = "*" rand = "*" rustc-serialize = "*" vecmath = "*" [dev-dependencies] gfx = "0.6.0" gfx_device_gl = "0.4.0" piston = "0.1.3" piston-gfx_texture = "0.0.7" piston_window = "0.0.8" piston2d-gfx_graphics = "0.1.21" pistoncore-glutin_window= "0.0.9" shader_version = "0.0.6"
[package] name = "elmesque" version = "0.1.1" authors = ["mitchmindtree <mitchell.nordine@gmail.com>"] description = "An attempt at porting Elm's incredibly useful, purely functional std graphics modules." readme = "README.md" keywords = ["elm", "graphics", "2d", "ui", "shape"] license = "MIT" repository = "https://github.com/mitchmindtree/elmesque.git" homepage = "https://github.com/mitchmindtree/elmesque" [dependencies] num = "*" piston2d-graphics = "*" rand = "*" rustc-serialize = "*" vecmath = "*" [dev-dependencies] gfx = "0.6.*" gfx_device_gl = "0.4.*" piston = "0.1.3" piston-gfx_texture = "0.1.0" piston_window = "0.1.0" piston2d-gfx_graphics = "0.1.22" pistoncore-glutin_window= "0.1.0" shader_version = "0.1.0"
Update cbindgen requirement from 0.22.0 to 0.23.0
[package] name = "lonlat_bng" description = "Convert longitude and latitude coordinates to BNG coordinates, and vice versa" version = "0.6.21" authors = ["Stephan Hügel <urschrei@gmail.com>"] license = "MIT" keywords = ["OSGB36", "BNG", "Geo", "ETRS89", "OSTN02", "OSTN15"] repository = "https://github.com/urschrei/lonlat_bng" documentation = "https://urschrei.github.io/lonlat_bng/" readme = "README.md" edition = "2018" [build-dependencies] cbindgen = "0.22.0" [dependencies] libc = "0.2.104" rand = "0.8.4" ostn15_phf = { git = "https://github.com/urschrei/ostn15_phf.git" } rayon = "1.5.1" [features] headers = [] [lib] name = "lonlat_bng" crate-type = ["rlib", "cdylib"] test = true doctest = false doc = true [profile.release] lto = true codegen-units = 1 [profile.bench] lto = true codegen-units = 1
[package] name = "lonlat_bng" description = "Convert longitude and latitude coordinates to BNG coordinates, and vice versa" version = "0.6.21" authors = ["Stephan Hügel <urschrei@gmail.com>"] license = "MIT" keywords = ["OSGB36", "BNG", "Geo", "ETRS89", "OSTN02", "OSTN15"] repository = "https://github.com/urschrei/lonlat_bng" documentation = "https://urschrei.github.io/lonlat_bng/" readme = "README.md" edition = "2018" [build-dependencies] cbindgen = "0.23.0" [dependencies] libc = "0.2.104" rand = "0.8.4" ostn15_phf = { git = "https://github.com/urschrei/ostn15_phf.git" } rayon = "1.5.1" [features] headers = [] [lib] name = "lonlat_bng" crate-type = ["rlib", "cdylib"] test = true doctest = false doc = true [profile.release] lto = true codegen-units = 1 [profile.bench] lto = true codegen-units = 1
Update sdl2 dependency in gfk_window_sdl
# Copyright 2016 The Gfx-rs Developers. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [package] name = "gfx_window_sdl" version = "0.4.0" description = "SDL2 window for gfx-rs" homepage = "https://github.com/gfx-rs/gfx" repository = "https://github.com/gfx-rs/gfx" keywords = ["graphics", "gamedev"] license = "Apache-2.0" authors = ["The Gfx-rs Developers"] [lib] name = "gfx_window_sdl" [dependencies] sdl2 = "0.18" gfx_core = { path = "../../core", version = "0.5" } gfx_device_gl = { path = "../../backend/gl", version = "0.12" }
# Copyright 2016 The Gfx-rs Developers. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [package] name = "gfx_window_sdl" version = "0.4.0" description = "SDL2 window for gfx-rs" homepage = "https://github.com/gfx-rs/gfx" repository = "https://github.com/gfx-rs/gfx" keywords = ["graphics", "gamedev"] license = "Apache-2.0" authors = ["The Gfx-rs Developers"] [lib] name = "gfx_window_sdl" [dependencies] sdl2 = "0.23" gfx_core = { path = "../../core", version = "0.5" } gfx_device_gl = { path = "../../backend/gl", version = "0.12" }
Update rss crate version dependency
[package] name = "syndication" version = "0.1.1" authors = ["Tom Shen <tom@shen.io>"] license = "MIT OR Apache-2.0" repository = "https://github.com/tomshen/rust-syndication" description = "Library for serializing Atom and RSS web feeds" keywords = ["atom", "blog", "feed", "rss", "syndication"] exclude = ["test-data/*"] [dependencies] atom_syndication = "0.1" rss = "0.2"
[package] name = "syndication" version = "0.2.0" authors = ["Tom Shen <tom@shen.io>"] license = "MIT OR Apache-2.0" repository = "https://github.com/tomshen/rust-syndication" description = "Library for serializing Atom and RSS web feeds" keywords = ["atom", "blog", "feed", "rss", "syndication"] exclude = ["test-data/*"] [dependencies] atom_syndication = "0.1" rss = "0.3"
Update release version to 1.0.0
[package] name = "zeclient" version = "0.0.1" authors = [ "smoss@gmail.com" ] [[bin]] name = "zeclient" [dependencies.curl] git = "https://github.com/carllerche/curl-rust"
[package] name = "zeclient" version = "1.0.0" authors = [ "smoss@gmail.com" ] [[bin]] name = "zeclient" [dependencies.curl] git = "https://github.com/carllerche/curl-rust"
Change to version 0.0.1 & change description
[package] name = "antimony" version = "0.0.0" homepage = "https://antimony.rs" authors = ["Mohammed Makhlouf <msmakhlouf@gmail.com>","Mohammad Samir <me@msamir.me>"] keywords = ["stream-processing","distributed", "real-time","drpc"] repository = "https://github.com/antimonyproject/antimony" documentation = "https://docs.rs/antimony" readme = "README.md" license = "MIT/Apache-2.0" description = """ A topology builder crate for Antimony. Version 0.0.0 is published as a placeholder. """ [dependencies] rustc-serialize = "0.3.24" futures = "0.1.16" tokio-core = "0.1.9" tokio-io = "0.1.3" tokio-uds = "0.1.5" futures-cpupool = "0.1.6"
[package] name = "antimony" version = "0.0.1" homepage = "https://antimony.rs" authors = ["Mohammed Makhlouf <msmakhlouf@gmail.com>","Mohammad Samir <me@msamir.me>"] keywords = ["stream-processing","distributed", "real-time","drpc"] repository = "https://github.com/antimonyproject/antimony" documentation = "https://docs.rs/antimony" readme = "README.md" license = "MIT/Apache-2.0" description = """ A topology builder crate for Antimony. """ [dependencies] rustc-serialize = "0.3.24" futures = "0.1.16" tokio-core = "0.1.9" tokio-io = "0.1.3" tokio-uds = "0.1.5" futures-cpupool = "0.1.6"
Select a single docs.rs build target
[package] name = "erased-serde" version = "0.3.10" authors = ["David Tolnay <dtolnay@gmail.com>"] license = "MIT OR Apache-2.0" description = "Type-erased Serialize and Serializer traits" repository = "https://github.com/dtolnay/erased-serde" documentation = "https://github.com/dtolnay/erased-serde" keywords = ["serde", "erasure"] include = ["Cargo.toml", "src/**/*.rs", "LICENSE-*", "README.md"] readme = "README.md" edition = "2018" [dependencies] serde = "1.0.63" [dev-dependencies] serde_cbor = "0.9" serde_derive = "1.0" serde_json = "1.0" [features] unstable-debug = [] [[test]] name = "test" path = "tests/readme.rs" [badges] travis-ci = { repository = "dtolnay/erased-serde" }
[package] name = "erased-serde" version = "0.3.10" authors = ["David Tolnay <dtolnay@gmail.com>"] license = "MIT OR Apache-2.0" description = "Type-erased Serialize and Serializer traits" repository = "https://github.com/dtolnay/erased-serde" documentation = "https://github.com/dtolnay/erased-serde" keywords = ["serde", "erasure"] include = ["Cargo.toml", "src/**/*.rs", "LICENSE-*", "README.md"] readme = "README.md" edition = "2018" [dependencies] serde = "1.0.63" [dev-dependencies] serde_cbor = "0.9" serde_derive = "1.0" serde_json = "1.0" [features] unstable-debug = [] [[test]] name = "test" path = "tests/readme.rs" [badges] travis-ci = { repository = "dtolnay/erased-serde" } [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
Comment out lines that are not customized
HTTP = "0.0.0.0:8080" ChatAPIPrefix = "" StaticHandlerPrefix = "" StaticFileDir = "./public" EnableServeStaticFile = true ShowRoutes = true
HTTP = "0.0.0.0:8080" # ChatAPIPrefix = "" # StaticHandlerPrefix = "" StaticFileDir = "./public" # EnableServeStaticFile = true # ShowRoutes = true
Add the `math` keyword, eurgh.
[package] name = "slow_primes" version = "0.1.7" authors = ["Huon Wilson <dbau.pp@gmail.com>"] homepage = "https://github.com/huonw/slow_primes" repository = "https://github.com/huonw/slow_primes" documentation = "http://huonw.github.io/slow_primes/slow_primes/" license = "MIT/Apache-2.0" keywords = ["mathematics", "primes", "number-theory"] readme = "README.md" description = """ A library to generate, identify and handle prime numbers and related properties. This library includes slow enumeration of primes up to a bound, slow factorisation of arbitrary numbers, fast primality tests and state-of-the-art estimation of upper and lower bounds for π(n) (the number of primes below n) and p_k (the k-th prime). """ [dependencies] num = "~0"
[package] name = "slow_primes" version = "0.1.7" authors = ["Huon Wilson <dbau.pp@gmail.com>"] homepage = "https://github.com/huonw/slow_primes" repository = "https://github.com/huonw/slow_primes" documentation = "http://huonw.github.io/slow_primes/slow_primes/" license = "MIT/Apache-2.0" keywords = ["math", "mathematics", "primes", "number-theory"] readme = "README.md" description = """ A library to generate, identify and handle prime numbers and related properties. This library includes slow enumeration of primes up to a bound, slow factorisation of arbitrary numbers, fast primality tests and state-of-the-art estimation of upper and lower bounds for π(n) (the number of primes below n) and p_k (the k-th prime). """ [dependencies] num = "~0"
Rename Rust executable to biotool-rs
[package] name = "biotool" version = "0.1.0" authors = ["Bernie Pope <bjpope@unimelb.edu.au>"] [dependencies] bio = "*" argparse = "*"
[package] name = "biotool-rs" version = "0.1.0" authors = ["Bernie Pope <bjpope@unimelb.edu.au>"] [dependencies] bio = "*" argparse = "*"
Add missing feature flag to tokio
[package] name = "librespot-audio" version = "0.1.6" authors = ["Paul Lietar <paul@lietar.net>"] description="The audio fetching and processing logic for librespot" license="MIT" edition = "2018" [dependencies.librespot-core] path = "../core" version = "0.1.6" [dependencies] aes-ctr = "0.6" byteorder = "1.4" bytes = "1.0" cfg-if = "1" lewton = "0.10" log = "0.4" futures-util = { version = "0.3", default_features = false } ogg = "0.8" tempfile = "3.1" tokio = { version = "1", features = ["sync"] } librespot-tremor = { version = "0.2.0", optional = true } vorbis = { version ="0.0.14", optional = true } [features] with-tremor = ["librespot-tremor"] with-vorbis = ["vorbis"]
[package] name = "librespot-audio" version = "0.1.6" authors = ["Paul Lietar <paul@lietar.net>"] description="The audio fetching and processing logic for librespot" license="MIT" edition = "2018" [dependencies.librespot-core] path = "../core" version = "0.1.6" [dependencies] aes-ctr = "0.6" byteorder = "1.4" bytes = "1.0" cfg-if = "1" lewton = "0.10" log = "0.4" futures-util = { version = "0.3", default_features = false } ogg = "0.8" tempfile = "3.1" tokio = { version = "1", features = ["sync", "macros"] } librespot-tremor = { version = "0.2.0", optional = true } vorbis = { version ="0.0.14", optional = true } [features] with-tremor = ["librespot-tremor"] with-vorbis = ["vorbis"]
Add author to codegen crate
[package] name = "syn-internal-codegen" version = "0.0.0" authors = ["Nika Layzell <nika@thelayzells.com>"] edition = "2018" publish = false # this is an internal crate which should never be published [dependencies] syn-next = { path = "..", features = ["full", "extra-traits"] } quote-next = "0.6" color-backtrace = "0.2" failure = "0.1" indexmap = { version = "1.0", features = ["serde-1"] } inflections = "1.1" proc-macro2-next = "0.4" rustfmt = { package = "rustfmt-nightly", git = "https://github.com/rust-lang-nursery/rustfmt" } serde = { version = "1.0.88", features = ["derive"] } serde_json = "1.0.38" toml = "0.4.10" semver = { version = "0.9", features = ["serde"] } syn-codegen = { path = "../json" } [workspace] # Prefer that `cargo clean` in syn's directory does not require a rebuild of # rustfmt in the codegen directory. [patch.crates-io] proc-macro2-next = { git = "https://github.com/alexcrichton/proc-macro2", branch = "next" } quote-next = { git = "https://github.com/dtolnay/quote" }
[package] name = "syn-internal-codegen" version = "0.0.0" authors = ["David Tolnay <dtolnay@gmail.com>", "Nika Layzell <nika@thelayzells.com>"] edition = "2018" publish = false # this is an internal crate which should never be published [dependencies] syn-next = { path = "..", features = ["full", "extra-traits"] } quote-next = "0.6" color-backtrace = "0.2" failure = "0.1" indexmap = { version = "1.0", features = ["serde-1"] } inflections = "1.1" proc-macro2-next = "0.4" rustfmt = { package = "rustfmt-nightly", git = "https://github.com/rust-lang-nursery/rustfmt" } serde = { version = "1.0.88", features = ["derive"] } serde_json = "1.0.38" toml = "0.4.10" semver = { version = "0.9", features = ["serde"] } syn-codegen = { path = "../json" } [workspace] # Prefer that `cargo clean` in syn's directory does not require a rebuild of # rustfmt in the codegen directory. [patch.crates-io] proc-macro2-next = { git = "https://github.com/alexcrichton/proc-macro2", branch = "next" } quote-next = { git = "https://github.com/dtolnay/quote" }
Fix bad links for license and homepage
name = "light-hugo" license = "MPL2" licenselink = "https://github.com/tblyler/hugo-nojs/blob/master/LICENSE" description = "CSS and HTML only blog/pages focused on content." homepage = "https://github.com/tblyler/hugo-nojs" tags = ["Responsive", "nojs", "Minimal", "normalize", "Light", "White"] features = ["blog", "pages"] [author] name = "Tony Blyler" homepage = "https://tonyblyler.com"
name = "light-hugo" license = "MPL2" licenselink = "https://github.com/tblyler/light-hugo/blob/master/LICENSE" description = "CSS and HTML only blog/pages focused on content." homepage = "https://github.com/tblyler/light-hugo" tags = ["Responsive", "nojs", "Minimal", "normalize", "Light", "White"] features = ["blog", "pages"] [author] name = "Tony Blyler" homepage = "https://tonyblyler.com"
Change dylib to staticlib for c api
[package] name = "comm-c-api" version = "0.1.0" authors = ["Zac Stewart <zgstewart@gmail.com>"] [lib] name = "comm" crate-type = ["dylib"] [dependencies] comm = { path = ".." } env_logger = "0.3.3"
[package] name = "comm-c-api" version = "0.1.0" authors = ["Zac Stewart <zgstewart@gmail.com>"] [lib] name = "comm" crate-type = ["staticlib"] [dependencies] comm = { path = ".." } env_logger = "0.3.3"
Revert "removes cache to update submodule"
[build] publish = "public" command = "rm -rf $NETLIFY_CACHE_DIR/* && npm install && npm run build"
[build] publish = "public" command = "npm install && npm run build"
Update keywords in crates.io metadata
[package] name = "quote" version = "1.0.20" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay <dtolnay@gmail.com>"] autobenches = false categories = ["development-tools::procedural-macro-helpers"] description = "Quasi-quoting macro quote!(...)" documentation = "https://docs.rs/quote/" edition = "2018" keywords = ["syn"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/dtolnay/quote" rust-version = "1.31" [dependencies] proc-macro2 = { version = "1.0.40", default-features = false } [dev-dependencies] rustversion = "1.0" trybuild = { version = "1.0.52", features = ["diff"] } [features] default = ["proc-macro"] # Disabling the proc-macro feature removes the dynamic library dependency on # libproc_macro in the rustc compiler. proc-macro = ["proc-macro2/proc-macro"] [workspace] members = ["benches"] [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
[package] name = "quote" version = "1.0.20" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay <dtolnay@gmail.com>"] autobenches = false categories = ["development-tools::procedural-macro-helpers"] description = "Quasi-quoting macro quote!(...)" documentation = "https://docs.rs/quote/" edition = "2018" keywords = ["macros", "syn"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/dtolnay/quote" rust-version = "1.31" [dependencies] proc-macro2 = { version = "1.0.40", default-features = false } [dev-dependencies] rustversion = "1.0" trybuild = { version = "1.0.52", features = ["diff"] } [features] default = ["proc-macro"] # Disabling the proc-macro feature removes the dynamic library dependency on # libproc_macro in the rustc compiler. proc-macro = ["proc-macro2/proc-macro"] [workspace] members = ["benches"] [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]
Remove old examples and update URLs
[package] name = "ears" version = "0.3.0" authors = ["Jeremy Letang <letang.jeremy@gmail.com>"] license = "MIT" keywords = ["audio", "openal", "sndfile"] readme = "README.md" build = "build.rs" repository = "https://github.com/jeremyletang/ears" homepage = "https://github.com/jeremyletang/ears" documentation = "https://github.com/jeremyletang/ears" description = """ Easy Api in Rust to play Sounds """ [lib] name = "ears" crate-type = ["dylib", "rlib"] [[bin]] name = "many_sounds" path = "src/examples/many_sounds/main.rs" [[bin]] name = "record" path = "src/examples/record/main.rs" [[bin]] name = "simple_player" path = "src/examples/simple_player/main.rs" [dependencies] libc = "*"
[package] name = "ears" version = "0.3.1" authors = ["Jeremy Letang <letang.jeremy@gmail.com>", "Jan Niklas Hasse <jhasse@bixense.com>"] license = "MIT" keywords = ["audio", "openal", "sndfile"] readme = "README.md" build = "build.rs" repository = "https://github.com/jhasse/ears" documentation = "http://bixense.com/ears" description = "Easy Api in Rust to play Sounds" [lib] name = "ears" crate-type = ["dylib", "rlib"] [dependencies] libc = "*"
Fix broken link to docs, bump version to 0.2.4
[package] name = "parser-combinators" version = "0.2.3" authors = ["Markus Westerlind <marwes91@gmail.com>"] description = "Parser combinators based on the Haskell library parsec" repository = "https://github.com/Marwes/parser-combinators" documentation = "https://marwes.github.io/parser-combinators/parser-combinators/index.html" keywords = ["parser"] license = "MIT" [lib] name = "parser_combinators" path = "src/lib.rs"
[package] name = "parser-combinators" version = "0.2.4" authors = ["Markus Westerlind <marwes91@gmail.com>"] description = "Parser combinators based on the Haskell library parsec" repository = "https://github.com/Marwes/parser-combinators" documentation = "https://marwes.github.io/parser-combinators/parser_combinators/index.html" keywords = ["parser"] license = "MIT" [lib] name = "parser_combinators" path = "src/lib.rs"
Update pnet_base requirement from 0.22.0 to 0.25.0
[package] name = "pnet" version = "0.25.0" authors = [ "Robert Clipsham <robert@octarineparrot.com>" ] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" repository = "https://github.com/libpnet/libpnet" description = "Cross-platform, low level networking using the Rust programming language." readme = "README.md" keywords = ["networking", "transport", "datalink", "packet", "protocol"] categories = ["network-programming", "parser-implementations"] build = "build.rs" [features] benchmark = [] netmap = ["pnet_datalink/netmap_sys", "pnet_datalink/netmap"] pcap = ["pnet_datalink/pcap"] appveyor = [] travis = [] serde = ["pnet_base/serde"] [dependencies] ipnetwork = "0.15.0" pnet_base = "0.22.0" pnet_sys = { path = "pnet_sys", version = "0.25.0" } pnet_datalink = { path = "pnet_datalink", version = "0.25.0" } pnet_transport = { path = "pnet_transport", version = "0.25.0" } pnet_packet = { path = "pnet_packet", version = "0.25.0" } [dev-dependencies] time = ">=0.1"
[package] name = "pnet" version = "0.25.0" authors = [ "Robert Clipsham <robert@octarineparrot.com>" ] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" repository = "https://github.com/libpnet/libpnet" description = "Cross-platform, low level networking using the Rust programming language." readme = "README.md" keywords = ["networking", "transport", "datalink", "packet", "protocol"] categories = ["network-programming", "parser-implementations"] build = "build.rs" [features] benchmark = [] netmap = ["pnet_datalink/netmap_sys", "pnet_datalink/netmap"] pcap = ["pnet_datalink/pcap"] appveyor = [] travis = [] serde = ["pnet_base/serde"] [dependencies] ipnetwork = "0.15.0" pnet_base = "0.25.0" pnet_sys = { path = "pnet_sys", version = "0.25.0" } pnet_datalink = { path = "pnet_datalink", version = "0.25.0" } pnet_transport = { path = "pnet_transport", version = "0.25.0" } pnet_packet = { path = "pnet_packet", version = "0.25.0" } [dev-dependencies] time = ">=0.1"
Include only the necessary files in the crate
[package] name = "pam-sys" version = "1.0.0-alpha3" authors = ["Florian Wilkens <gh@1wilkens.org>"] description = "FFI wrappers for the Linux Pluggable Authentication Modules (PAM)" license = "MIT OR Apache-2.0" categories = ["authentication", "api-bindings", "external-ffi-bindings", "os::unix-apis"] repository = "https://github.com/1wilkens/pam-sys.git" documentation = "https://docs.rs/pam-sys/" readme = "README.md" edition = "2018" build = "build.rs" links = "pam" [badges] azure-devops = { project = "1wilkens/ci", pipeline = "pam-sys" } [dependencies] libc = "^0.2.65" [build-dependencies] bindgen = "^0.55"
[package] name = "pam-sys" version = "1.0.0-alpha3" authors = ["Florian Wilkens <gh@1wilkens.org>"] description = "FFI wrappers for the Linux Pluggable Authentication Modules (PAM)" license = "MIT OR Apache-2.0" categories = ["authentication", "api-bindings", "external-ffi-bindings", "os::unix-apis"] repository = "https://github.com/1wilkens/pam-sys.git" documentation = "https://docs.rs/pam-sys/" readme = "README.md" include = [ "src/lib.rs", "LICENSE-*", "README.md", "CHANGELOG.md", "wrapper.h", "build.rs", "Cargo.toml" ] edition = "2018" build = "build.rs" links = "pam" [badges] azure-devops = { project = "1wilkens/ci", pipeline = "pam-sys" } [dependencies] libc = "^0.2.65" [build-dependencies] bindgen = "^0.55"
Bump to taxonomy version e4e2d39.
[package] name = "foxbox_thinkerbell" version = "0.1.2" authors = ["David Rajchenbach-Teller <dteller@mozilla.com>"] [dependencies] serde = "0.6.13" serde_json = "0.6.0" serde_macros = "0.6.14" chrono = "0.2.19" foxbox_taxonomy = { git = "https://github.com/fxbox/taxonomy.git", rev = "4404422" } # foxbox_taxonomy = { path = "../taxonomy" } rusqlite = "0.6.0" transformable_channels = "*" [dev-dependencies] docopt = "0.6.78"
[package] name = "foxbox_thinkerbell" version = "0.1.2" authors = ["David Rajchenbach-Teller <dteller@mozilla.com>"] [dependencies] serde = "0.6.13" serde_json = "0.6.0" serde_macros = "0.6.14" chrono = "0.2.19" foxbox_taxonomy = { git = "https://github.com/fxbox/taxonomy.git", rev = "e4e2d39" } # foxbox_taxonomy = { path = "../taxonomy" } rusqlite = "0.6.0" transformable_channels = "*" [dev-dependencies] docopt = "0.6.78"
Update version number to 0.14.0
[package] name = "webdriver" version = "0.13.0" authors = ["Mozilla Tools and Automation <auto-tools@mozilla.com>"] description = "Library implementing the wire protocol for the W3C WebDriver specification." repository = "https://github.com/jgraham/webdriver-rust" license = "MPL-2.0" [dependencies] log = "0.3.5" regex = "0.1.47" rustc-serialize = "0.3.16" hyper = {version = "0.9", default-features = false} cookie = {version = "0.2.4", default-features = false} time = "0.1"
[package] name = "webdriver" version = "0.14.0" authors = ["Mozilla Tools and Automation <auto-tools@mozilla.com>"] description = "Library implementing the wire protocol for the W3C WebDriver specification." repository = "https://github.com/jgraham/webdriver-rust" license = "MPL-2.0" [dependencies] log = "0.3" regex = "0.1" rustc-serialize = "0.3" hyper = {version = "0.9", default-features = false} cookie = {version = "0.2", default-features = false} time = "0.1"
Update dependencies to use no_std versions
[package] name = "genesis" version = "0.1.0" authors = ["Dan Schatzberg <schatzberg.dan@gmail.com>"] repository = "https://github.com/dschatzberg/genesis" homepage = "https://github.com/dschatzberg/genesis" license = "AGPL-3.0" readme = "README.md" documentation = "https://dschatzberg.github.io/genesis" description = "Genesis Microkernel" keywords = ["operating system", "kernel", "nostd"] [lib] name = "genesis" crate-type = ["staticlib"] [dependencies] clippy = "0.0.67" fixedvec = "0.2" multiboot = "0.2" rlibc = "0.1" spin = "0.3" [dependencies.bitflags] git = "https://github.com/phil-opp/bitflags.git" branch = "no_std" [dependencies.lazy_static] version = "0.1" features = ["nostd"] git = "https://github.com/dschatzberg/lazy-static.rs" branch = "spin" [dependencies.x86] git = "https://github.com/dschatzberg/rust-x86.git"
[package] name = "genesis" version = "0.1.0" authors = ["Dan Schatzberg <schatzberg.dan@gmail.com>"] repository = "https://github.com/dschatzberg/genesis" homepage = "https://github.com/dschatzberg/genesis" license = "AGPL-3.0" readme = "README.md" documentation = "https://dschatzberg.github.io/genesis" description = "Genesis Microkernel" keywords = ["operating system", "kernel", "nostd"] [lib] name = "genesis" crate-type = ["staticlib"] [dependencies] clippy = "0.0.67" fixedvec = "0.2" multiboot = "0.2" rlibc = "1.0" spin = "0.4" bitflags = "0.7" [dependencies.lazy_static] version = "0.2" features = ["spin_no_std"] [dependencies.x86] git = "https://github.com/dschatzberg/rust-x86.git"
Update Rust crate url to 2.3
[package] name = "ditto-lsp" version = "0.0.1" edition = "2021" license = "BSD-3-Clause" [lib] doctest = false [dependencies] lsp-server = "0.5" lsp-types = "0.93" serde = "1.0" serde_json = "1.0" log = "0.4" miette = { version = "4.7" } tree-sitter-ditto = { git = "https://github.com/ditto-lang/tree-sitter-ditto", rev = "a0588121f9be33e8220a2779efa299f5e24dd79f" } tree-sitter = "0.20" url = "2.2" ditto-cst = { path = "../ditto-cst" } ditto-fmt = { path = "../ditto-fmt" } ropey = "1.5" #salsa = "xx" [dev-dependencies] log = { version = "0.4", features = ["std"] }
[package] name = "ditto-lsp" version = "0.0.1" edition = "2021" license = "BSD-3-Clause" [lib] doctest = false [dependencies] lsp-server = "0.5" lsp-types = "0.93" serde = "1.0" serde_json = "1.0" log = "0.4" miette = { version = "4.7" } tree-sitter-ditto = { git = "https://github.com/ditto-lang/tree-sitter-ditto", rev = "a0588121f9be33e8220a2779efa299f5e24dd79f" } tree-sitter = "0.20" url = "2.3" ditto-cst = { path = "../ditto-cst" } ditto-fmt = { path = "../ditto-fmt" } ropey = "1.5" #salsa = "xx" [dev-dependencies] log = { version = "0.4", features = ["std"] }
Remove SIMD non-unix dev dependencies.
[package] authors = ["edef <edef@edef.eu>"] name = "fringe" description = "safe, lightweight userland context switches" version = "1.2.1" license = "Apache-2.0/MIT" homepage = "https://github.com/edef1c/libfringe" repository = "https://github.com/edef1c/libfringe" documentation = "https://edef1c.github.io/libfringe" [target.'cfg(unix)'.dependencies] libc = "0.2.14" [dependencies.valgrind_request] optional = true version = "1.0.0" [dev-dependencies] simd = "0.1" [features] default = ["alloc", "valgrind"] alloc = [] valgrind = ["valgrind_request"] # These apply only to tests within this library; assembly at -O0 is completely # unreadable, so use -O1. [profile.dev] opt-level = 1 [profile.test] opt-level = 1
[package] authors = ["edef <edef@edef.eu>"] name = "fringe" description = "safe, lightweight userland context switches" version = "1.2.1" license = "Apache-2.0/MIT" homepage = "https://github.com/edef1c/libfringe" repository = "https://github.com/edef1c/libfringe" documentation = "https://edef1c.github.io/libfringe" [target.'cfg(unix)'.dependencies] libc = "0.2.14" [dependencies.valgrind_request] optional = true version = "1.0.0" [target.'cfg(unix)'.dev-dependencies] simd = "0.1" [features] default = ["alloc", "valgrind"] alloc = [] valgrind = ["valgrind_request"] # These apply only to tests within this library; assembly at -O0 is completely # unreadable, so use -O1. [profile.dev] opt-level = 1 [profile.test] opt-level = 1
Update sysinfo requirement from 0.24.2 to 0.25.1
[package] name = "livesplit-auto-splitting" version = "0.1.0" authors = ["Christopher Serr <christopher.serr@gmail.com>"] edition = "2021" [dependencies] anyhow = { version = "1.0.45", default-features = false } log = { version = "0.4.14", default-features = false } proc-maps = { version = "0.2.0", default-features = false } read-process-memory = { version = "0.1.4", default-features = false } slotmap = { version = "1.0.2", default-features = false } snafu = "0.7.0" sysinfo = { version = "0.24.2", default-features = false, features = ["multithread"] } time = { version = "0.3.3", default-features = false } wasmtime = { version = "0.39.1", default-features = false, features = [ "cranelift", "parallel-compilation", ] } wasmtime-wasi = { version = "0.39.1", optional = true } [features] unstable = ["wasmtime-wasi"]
[package] name = "livesplit-auto-splitting" version = "0.1.0" authors = ["Christopher Serr <christopher.serr@gmail.com>"] edition = "2021" [dependencies] anyhow = { version = "1.0.45", default-features = false } log = { version = "0.4.14", default-features = false } proc-maps = { version = "0.2.0", default-features = false } read-process-memory = { version = "0.1.4", default-features = false } slotmap = { version = "1.0.2", default-features = false } snafu = "0.7.0" sysinfo = { version = "0.25.1", default-features = false, features = ["multithread"] } time = { version = "0.3.3", default-features = false } wasmtime = { version = "0.39.1", default-features = false, features = [ "cranelift", "parallel-compilation", ] } wasmtime-wasi = { version = "0.39.1", optional = true } [features] unstable = ["wasmtime-wasi"]
Update `arbitrary` dependency to 0.3.2
[package] authors = ["The rust-fuzz Project Developers"] description = "A wrapper around LLVM's libFuzzer runtime." edition = "2018" license = "MIT/Apache-2.0/NCSA" name = "libfuzzer-sys" readme = "./README.md" repository = "https://github.com/rust-fuzz/libfuzzer" version = "0.2.0" [dependencies] arbitrary = "0.3.1" [build-dependencies] cc = "1.0" [features] arbitrary-derive = ["arbitrary/derive"]
[package] authors = ["The rust-fuzz Project Developers"] description = "A wrapper around LLVM's libFuzzer runtime." edition = "2018" license = "MIT/Apache-2.0/NCSA" name = "libfuzzer-sys" readme = "./README.md" repository = "https://github.com/rust-fuzz/libfuzzer" version = "0.2.0" [dependencies] arbitrary = "0.3.2" [build-dependencies] cc = "1.0" [features] arbitrary-derive = ["arbitrary/derive"]
Update util to edition 2021.
[package] name = "util" version = "0.1.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]
[package] name = "util" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]
Add description and license for profiler metadata
[package] name = "exonum_profiler" version = "0.1.0" authors = ["Ty Overby <ty@pre-alpha.com>", "The Exonum Team <exonum@bitfury.com>"] repository = "https://github.com/exonum/exonum" [dependencies] lazy_static = "0.2.1" thread-id = "2.0.0" ctrlc = "3.0.1" [features] nomock = []
[package] name = "exonum_profiler" version = "0.1.0" authors = ["Ty Overby <ty@pre-alpha.com>", "The Exonum Team <exonum@bitfury.com>"] repository = "https://github.com/exonum/exonum" description = "A profiling / flamegraph library." license = "Apache-2.0" [dependencies] lazy_static = "0.2.1" thread-id = "2.0.0" ctrlc = "3.0.1" [features] nomock = []
Use a custom fork of glutin for a correct Android life cycle
[package] name = "room_example" version = "0.1.0" authors = ["Imanol Fernandez <mortimergoro@gmail.com>"] build = "build.rs" [dependencies] glutin = "0.7.4" gleam = "0.4" cgmath = "0.12" image = "0.12" android_glue = "0.2" [target.'cfg(target_os = "android")'.dependencies] android_injected_glue = {git = "https://github.com/mmatyas/android-rs-injected-glue"} [dependencies.rust-webvr] path = "../.."
[package] name = "room_example" version = "0.1.0" authors = ["Imanol Fernandez <mortimergoro@gmail.com>"] build = "build.rs" [dependencies] glutin = { git = "https://github.com/MortimerGoro/glutin/", branch = "android_fixes" } gleam = "0.4" cgmath = "0.12" image = "0.12" android_glue = "0.2" [target.'cfg(target_os = "android")'.dependencies] android_injected_glue = {git = "https://github.com/mmatyas/android-rs-injected-glue"} [dependencies.rust-webvr] path = "../.."
Remove active development disclaimer from crate description
[package] name = "tensorflow" version = "0.0.2" authors = ["Adam Crume <acrume@google.com>"] description = "Rust language bindings for TensorFlow. This project is still under active development and not yet ready for widespread use." license = "Apache-2.0" keywords = ["TensorFlow", "bindings"] readme = "README.md" repository = "https://github.com/google/tensorflow-rust" [dependencies] libc = "0.2" tensorflow-sys = { version = "0.4", path = "tensorflow-sys" } [features] tensorflow_unstable = []
[package] name = "tensorflow" version = "0.0.2" authors = ["Adam Crume <acrume@google.com>"] description = "Rust language bindings for TensorFlow." license = "Apache-2.0" keywords = ["TensorFlow", "bindings"] readme = "README.md" repository = "https://github.com/google/tensorflow-rust" [dependencies] libc = "0.2" tensorflow-sys = { version = "0.4", path = "tensorflow-sys" } [features] tensorflow_unstable = []
Update description and documentation link
[package] name = "bit_field" version = "0.4.0" authors = ["Philipp Oppermann <dev@phil-opp.com>"] license = "Apache-2.0/MIT" description = "Simple bit field implementation providing get_bit, get_range, set_bit, and set_range methods for unsigned integers." keywords = ["no_std"] repository = "https://github.com/phil-opp/rust-bit-field" documentation = "https://crates.fyi/crates/bit_field/0.2.1/" [dependencies]
[package] name = "bit_field" version = "0.4.0" authors = ["Philipp Oppermann <dev@phil-opp.com>"] license = "Apache-2.0/MIT" description = "Simple bit field trait providing get_bit, get_range, set_bit, and set_range methods for unsigned integers." keywords = ["no_std"] repository = "https://github.com/phil-opp/rust-bit-field" documentation = "https://docs.rs/bit_field" [dependencies]
Switch pyo3 crate version from git to crates.io alpha
[package] name = "numpy" version = "0.7.0" authors = ["Toshiki Teramura <toshiki.teramura@gmail.com>", "Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>"] description = "Rust binding of NumPy C-API" documentation = "https://rust-numpy.github.io/rust-numpy/numpy" edition = "2018" repository = "https://github.com/rust-numpy/rust-numpy" keywords = ["numpy", "python", "binding"] license-file = "LICENSE" [dependencies] cfg-if = "0.1" libc = "0.2" num-complex = "0.2" num-traits = "0.2" ndarray = ">=0.13" pyo3 = { git = "https://github.com/PyO3/pyo3.git" } [features] # In default setting, python version is automatically detected default = [] # This is no longer needed but setuptools-rust assumes this feature python3 = ["pyo3/python3"]
[package] name = "numpy" version = "0.7.0" authors = ["Toshiki Teramura <toshiki.teramura@gmail.com>", "Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>"] description = "Rust binding of NumPy C-API" documentation = "https://rust-numpy.github.io/rust-numpy/numpy" edition = "2018" repository = "https://github.com/rust-numpy/rust-numpy" keywords = ["numpy", "python", "binding"] license-file = "LICENSE" [dependencies] cfg-if = "0.1" libc = "0.2" num-complex = "0.2" num-traits = "0.2" ndarray = ">=0.13" pyo3 = "0.9.0-alpha.1" [features] # In default setting, python version is automatically detected default = [] # This is no longer needed but setuptools-rust assumes this feature python3 = ["pyo3/python3"]
Update `rand_core` to 0.6 and bump crate version to 0.8.0
[package] name = "rdrand" version = "0.7.0" authors = ["Simonas Kazlauskas <rdrand@kazlauskas.me>"] description = "An implementation of random number generator based on rdrand and rdseed instructions" keywords = ["rand", "rdrand", "rdseed", "random"] license = "ISC" repository = "https://github.com/nagisa/rust_rdrand/" documentation = "https://docs.rs/rdrand/0.7.0/" edition = "2018" [[bench]] name = "rdrand" harness = false [dependencies] rand_core = { version = "0.5.1", default-features = false } [dev-dependencies] criterion = "0.3" [features] default = ["std"] std = ["rand_core/std"]
[package] name = "rdrand" version = "0.8.0" authors = ["Simonas Kazlauskas <rdrand@kazlauskas.me>"] description = "An implementation of random number generator based on rdrand and rdseed instructions" keywords = ["rand", "rdrand", "rdseed", "random"] license = "ISC" repository = "https://github.com/nagisa/rust_rdrand/" documentation = "https://docs.rs/rdrand/0.7.0/" edition = "2018" [[bench]] name = "rdrand" harness = false [dependencies] rand_core = { version = "0.6", default-features = false } [dev-dependencies] criterion = "0.3" [features] default = ["std"] std = ["rand_core/std"]
Update to '0.0.2' after publishing to crates.io.
# Copyright (C) 2015 Ahmed Charles - acharles@outlook.com # Distributed under the MIT License. # (See accompanying file LICENSE.txt or copy at # http://opensource.org/licenses/MIT) [package] name = "lua-rs" version = "0.0.1" authors = ["Ahmed Charles <acharles@outlook.com>"] description = "Lua port written in Rust." repository = "https://github.com/ahmedcharles/lua-rs" readme = "README.md" keywords = ["lua"] license = "MIT" exclude = [".gitignore", ".travis.yml"]
# Copyright (C) 2015 Ahmed Charles - acharles@outlook.com # Distributed under the MIT License. # (See accompanying file LICENSE.txt or copy at # http://opensource.org/licenses/MIT) [package] name = "lua-rs" version = "0.0.2" authors = ["Ahmed Charles <acharles@outlook.com>"] description = "Lua port written in Rust." repository = "https://github.com/ahmedcharles/lua-rs" readme = "README.md" keywords = ["lua"] license = "MIT" exclude = [".gitignore", ".travis.yml"]
Add metadata to test-server to publish it on crates.io
[package] name = "test-server" version = "0.0.1" build = "build.rs" [lib] name = "test_server" path = "lib.rs" [dependencies] lazy_static = "0.1.15" [features] default=[] modbus-server-tests = []
[package] name = "modbus-test-server" version = "0.0.1" authors = ["Falco Hirschenberger <falco.hirschenberger@gmail.com>"] repository = "https://github.com/hirschenberger/modbus-rs.git" homepage = "https://github.com/hirschenberger/modbus-rs.git" documentation = "https://hirschenberger.github.io/modbus-rs" license = "MIT" description = "Libmodbus based server to test the rust modbus package" keywords = ["modbus", "hardware", "test"] build = "build.rs" [lib] name = "test_server" path = "lib.rs" [dependencies] lazy_static = "0.1.15" [features] default=[] modbus-server-tests = []