move unicode_data_encoded.gz to lib

main
pantonshire 3 years ago
parent c274ba6f01
commit effe6916d3

@ -57,7 +57,7 @@ import http.client
unicode_data_host = 'www.unicode.org'
unicode_data_url_path = '/Public/UCD/latest/ucd/UnicodeData.txt'
out_data_path = 'unicode_data_encoded.gz'
out_data_path = 'lib/unicode_data_encoded.gz'
class StringTableIndex:
def __init__(self, bs: bytes):

@ -1,6 +1,6 @@
use std::{env, fs::File, io, path::Path};
const COMPRESSED_DATA_PATH: &str = "../unicode_data_encoded.gz";
const COMPRESSED_DATA_PATH: &str = "unicode_data_encoded.gz";
const OUT_DATA_PATH: &str = "unicode_data_encoded";
fn main() -> io::Result<()> {

Loading…
Cancel
Save