https://github.com/docopt/docopt.rs-old
New Rust port is here:
https://github.com/docopt/docopt.rs-old
Last synced: about 1 year ago
JSON representation
New Rust port is here:
- Host: GitHub
- URL: https://github.com/docopt/docopt.rs-old
- Owner: docopt
- Created: 2012-10-29T20:50:22.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-11-12T10:49:36.000Z (over 13 years ago)
- Last Synced: 2024-05-09T19:19:22.866Z (about 2 years ago)
- Language: Rust
- Homepage: https://github.com/docopt/docopt.rs
- Size: 161 KB
- Stars: 2
- Watchers: 11
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
rust-docopt
===========
This is a port of Python docopt library http://github.com/docopt/docopt
** WORK IS CURRENTLY IN PROGRESS **
Requirements
-------------
- Rust >= 0.4 // using bleeding-edge master branch of Rust
- GNU Make == 3.81 // you can try other versions as well
Building & tests
----------------
Run following commands to init and update git submodules::
git submodule init
git submodule update
To build and run language agnostic tests::
make
Run unit tests::
make run_tests
Run only agnostic tests::
make run_agnostic_tests
Clean::
make clean
Agnositc tests all fail exept first, as by now almost nothing is
implemented yet.
** WORK IS CURRENTLY IN PROGRESS **